Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: object storage wizard #1790

Merged
merged 8 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ jobs:
tag=${ref##*/}
sed --in-place "s/APP_VERSION_PLACEHOLDER/$tag/g" chart/apl/Chart.yaml
sed --in-place "s/CONTEXT_PLACEHOLDER/${{ env.LINODE_CLUSTER_CONTEXT }}/g" tests/integration/${{ inputs.install_profile }}.yaml
sed --in-place "s/CLUSTER_NAME_PLACEHOLDER/aplinstall${{ env.LINODE_CLUSTER_ID }}/g" tests/integration/${{ inputs.install_profile }}.yaml
sed --in-place "s/OTOMI_VERSION_PLACEHOLDER/${GITHUB_REF##*/}/g" tests/integration/${{ inputs.install_profile }}.yaml
touch values-container-registry.yaml

Expand Down
1 change: 1 addition & 0 deletions tests/bootstrap/input.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Minimal values file with defaults
cluster:
name: CLUSTER_NAME_PLACEHOLDER
k8sContext: CONTEXT_PLACEHOLDER
domainSuffix: local.host
otomi:
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/full.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# All apps enabled
cluster:
name: 'dev'
name: CLUSTER_NAME_PLACEHOLDER
k8sContext: CONTEXT_PLACEHOLDER
otomi:
isMultitenant: true
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/minimal-with-team.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Minimal values file with defaults
cluster:
name: 'dev'
name: CLUSTER_NAME_PLACEHOLDER
k8sContext: CONTEXT_PLACEHOLDER
otomi:
version: 'OTOMI_VERSION_PLACEHOLDER'
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/minimal.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Minimal values file with defaults
cluster:
name: 'dev'
name: CLUSTER_NAME_PLACEHOLDER
k8sContext: CONTEXT_PLACEHOLDER
otomi:
version: 'OTOMI_VERSION_PLACEHOLDER'
2 changes: 1 addition & 1 deletion tests/integration/monitoring-with-team.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Minimal values file with defaults
cluster:
name: 'dev'
name: CLUSTER_NAME_PLACEHOLDER
k8sContext: CONTEXT_PLACEHOLDER
otomi:
version: 'OTOMI_VERSION_PLACEHOLDER'
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/upgrade.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Minimal values file with defaults
cluster:
name: 'dev'
name: CLUSTER_NAME_PLACEHOLDER
k8sContext: CONTEXT_PLACEHOLDER
otomi:
version: v0.26.0
Expand Down
4 changes: 4 additions & 0 deletions values-schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3157,6 +3157,10 @@ properties:

obj:
properties:
showWizard:
type: boolean
default: true
description: Show the Object Storage wizard.
provider:
properties:
linode:
Expand Down