Skip to content
New issue

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

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

Already on GitHub? # to your account

feat: make generic to work in all clouds #2

Merged
merged 1 commit into from
Jul 12, 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
5 changes: 2 additions & 3 deletions wayfinder/appenv-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ metadata:
namespace: ws-${{ values.workspaceKey }}
spec:
application: ${{ values.name }}
cloud: aws
cloud: ${{ values.cloud }}
cloudAccessConfigRef:
name: aws-prod
name: ${{ values.cloud }}-prod
workspace: ${{ values.workspaceKey }}
clusterRef:
group: compute.appvia.io
Expand All @@ -19,5 +19,4 @@ spec:
version: v2beta2
name: prod
namespace: ${{ values.name }}-prod
region: eu-west-2
stage: prod
5 changes: 2 additions & 3 deletions wayfinder/appenv-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ metadata:
namespace: ws-${{ values.workspaceKey }}
spec:
application: ${{ values.name }}
cloud: aws
cloud: ${{ values.cloud }}
cloudAccessConfigRef:
name: aws-nonprod
name: ${{ values.cloud }}-nonprod
workspace: ${{ values.workspaceKey }}
clusterRef:
group: compute.appvia.io
Expand All @@ -19,5 +19,4 @@ spec:
version: v2beta2
name: staging
namespace: ${{ values.name }}-staging
region: eu-west-2
stage: nonprod
2 changes: 1 addition & 1 deletion wayfinder/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ kind: Application
metadata:
name: ${{ values.name }}
spec:
cloud: aws
cloud: ${{ values.cloud }}
description: My TODO Application
name: ${{ values.name }}