-
Notifications
You must be signed in to change notification settings - Fork 0
Move user claims prod to gitops #403
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
Open
William-Edwards-STFC
wants to merge
7
commits into
main
Choose a base branch
from
prod-user-claims
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 6 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
16f8b12
Fix dev deployment yaml
William-Edwards-STFC 58f2b07
Add backend app yaml
William-Edwards-STFC e580313
Add backend prod overlays
William-Edwards-STFC 1a0b694
Add frontend yaml
William-Edwards-STFC 7a3a560
Add frontend overlays
William-Edwards-STFC 68aff3c
change .yml to .yaml
William-Edwards-STFC 747a358
Update kustomize files
William-Edwards-STFC File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| apiVersion: argoproj.io/v1alpha1 | ||
| kind: ApplicationSet | ||
| metadata: | ||
| name: user-claims-backend | ||
| namespace: argocd | ||
| spec: | ||
| goTemplate: true | ||
| goTemplateOptions: ["missingkey=error"] | ||
| generators: | ||
| - clusters: | ||
| selector: | ||
| matchLabels: | ||
| appEnvironment: prod | ||
| template: | ||
| metadata: | ||
| name: '{{.name}}-user-claims-backend' | ||
| spec: | ||
| project: r-a-project | ||
| source: | ||
| path: components/ra/user-claims-backend/overlays/prod | ||
| repoURL: 'https://github.com/isisbusapps/gitops' | ||
| targetRevision: main | ||
| destination: | ||
| namespace: apps | ||
| name: '{{.name}}' | ||
| ignoreDifferences: | ||
| - group: apps | ||
| kind: Deployment | ||
| jqPathExpressions: | ||
| - .spec.template.spec.containers[0].image | ||
| syncPolicy: | ||
| automated: {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| apiVersion: argoproj.io/v1alpha1 | ||
| kind: ApplicationSet | ||
| metadata: | ||
| name: user-claims-frontend | ||
| namespace: argocd | ||
| spec: | ||
| goTemplate: true | ||
| goTemplateOptions: ["missingkey=error"] | ||
| generators: | ||
| - clusters: | ||
| selector: | ||
| matchLabels: | ||
| appEnvironment: prod | ||
| template: | ||
| metadata: | ||
| name: '{{.name}}-user-claims-frontend' | ||
| spec: | ||
| project: r-a-project | ||
| source: | ||
| path: components/ra/user-claims-frontend/overlays/prod | ||
| repoURL: 'https://github.com/isisbusapps/gitops' | ||
| targetRevision: main | ||
| destination: | ||
| namespace: apps | ||
| name: '{{.name}}' | ||
| ignoreDifferences: | ||
| - group: apps | ||
| kind: Deployment | ||
| jqPathExpressions: | ||
| - .spec.template.spec.containers[0].image | ||
| syncPolicy: | ||
| automated: {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
components/ra/user-claims-backend/overlays/prod/deployment.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| apiVersion: apps/v1 | ||
| kind: Deployment | ||
| metadata: | ||
| name: user-claims-backend | ||
| spec: | ||
| template: | ||
| spec: | ||
| containers: | ||
| - name: user-claims-backend | ||
| image: ghcr.io/isisbusapps/user-claims-backend:2.1.0 |
11 changes: 11 additions & 0 deletions
11
components/ra/user-claims-backend/overlays/prod/kustomization.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| apiVersion: kustomize.config.k8s.io/v1beta1 | ||
| kind: Kustomization | ||
|
|
||
| bases: | ||
| - ../../base | ||
| - static-secret.yaml | ||
|
|
||
| namespace: apps | ||
|
|
||
| patches: | ||
| - path: deployment.yml | ||
16 changes: 16 additions & 0 deletions
16
components/ra/user-claims-backend/overlays/prod/static-secret.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| apiVersion: secrets.hashicorp.com/v1beta1 | ||
| kind: VaultStaticSecret | ||
| metadata: | ||
| name: user-claims-backend | ||
| namespace: apps | ||
| spec: | ||
| type: kv-v2 | ||
| refreshAfter: 30s | ||
| vaultAuthRef: static-auth | ||
|
|
||
| mount: reviews_and_allocations | ||
| path: prod/user-claims-backend | ||
| destination: | ||
| name: user-claims-backend | ||
| overwrite: true | ||
| create: true |
10 changes: 10 additions & 0 deletions
10
components/ra/user-claims-frontend/overlays/prod/deployment.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| apiVersion: apps/v1 | ||
| kind: Deployment | ||
| metadata: | ||
| name: user-claims-backend | ||
| spec: | ||
| template: | ||
| spec: | ||
| containers: | ||
| - name: user-claims-backend | ||
| image: ghcr.io/isisbusapps/user-claims-backend:2.1.0 |
10 changes: 10 additions & 0 deletions
10
components/ra/user-claims-frontend/overlays/prod/kustomization.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| apiVersion: kustomize.config.k8s.io/v1beta1 | ||
| kind: Kustomization | ||
|
|
||
| bases: | ||
| - ../../base | ||
|
|
||
| namespace: apps | ||
|
|
||
| patches: | ||
| - path: deployment.yml |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here and in the frontend, the file extension needs updating to match the recent change to
.yamlThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good catch ive changed that