Skip to content

Commit 4d28234

Browse files
authored
feat: object storage wizard (#1790)
1 parent 5fc6f14 commit 4d28234

File tree

8 files changed

+11
-5
lines changed

8 files changed

+11
-5
lines changed

.github/workflows/integration.yml

+1
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,7 @@ jobs:
260260
tag=${ref##*/}
261261
sed --in-place "s/APP_VERSION_PLACEHOLDER/$tag/g" chart/apl/Chart.yaml
262262
sed --in-place "s/CONTEXT_PLACEHOLDER/${{ env.LINODE_CLUSTER_CONTEXT }}/g" tests/integration/${{ inputs.install_profile }}.yaml
263+
sed --in-place "s/CLUSTER_NAME_PLACEHOLDER/aplinstall${{ env.LINODE_CLUSTER_ID }}/g" tests/integration/${{ inputs.install_profile }}.yaml
263264
sed --in-place "s/OTOMI_VERSION_PLACEHOLDER/${GITHUB_REF##*/}/g" tests/integration/${{ inputs.install_profile }}.yaml
264265
touch values-container-registry.yaml
265266

tests/bootstrap/input.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Minimal values file with defaults
22
cluster:
3+
name: CLUSTER_NAME_PLACEHOLDER
34
k8sContext: CONTEXT_PLACEHOLDER
45
domainSuffix: local.host
56
otomi:

tests/integration/full.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# All apps enabled
22
cluster:
3-
name: 'dev'
3+
name: CLUSTER_NAME_PLACEHOLDER
44
k8sContext: CONTEXT_PLACEHOLDER
55
otomi:
66
isMultitenant: true

tests/integration/minimal-with-team.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Minimal values file with defaults
22
cluster:
3-
name: 'dev'
3+
name: CLUSTER_NAME_PLACEHOLDER
44
k8sContext: CONTEXT_PLACEHOLDER
55
otomi:
66
version: 'OTOMI_VERSION_PLACEHOLDER'

tests/integration/minimal.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Minimal values file with defaults
22
cluster:
3-
name: 'dev'
3+
name: CLUSTER_NAME_PLACEHOLDER
44
k8sContext: CONTEXT_PLACEHOLDER
55
otomi:
66
version: 'OTOMI_VERSION_PLACEHOLDER'

tests/integration/monitoring-with-team.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Minimal values file with defaults
22
cluster:
3-
name: 'dev'
3+
name: CLUSTER_NAME_PLACEHOLDER
44
k8sContext: CONTEXT_PLACEHOLDER
55
otomi:
66
version: 'OTOMI_VERSION_PLACEHOLDER'

tests/integration/upgrade.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Minimal values file with defaults
22
cluster:
3-
name: 'dev'
3+
name: CLUSTER_NAME_PLACEHOLDER
44
k8sContext: CONTEXT_PLACEHOLDER
55
otomi:
66
version: v0.26.0

values-schema.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -3157,6 +3157,10 @@ properties:
31573157

31583158
obj:
31593159
properties:
3160+
showWizard:
3161+
type: boolean
3162+
default: true
3163+
description: Show the Object Storage wizard.
31603164
provider:
31613165
properties:
31623166
linode:

0 commit comments

Comments
 (0)