Skip to content
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
6 changes: 5 additions & 1 deletion apps/sample-app/overlays/dev/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,9 @@ patches:
path: /spec/template/spec/containers/0/env/0/value
value: dev
images:
# Pinned to an immutable sha- tag, never a floating name (dev/staging/prod).
# CI (ci.yml's bump-dev-overlay job, or promote.yml for staging/prod) is the only
# thing that should change this value, via `kustomize edit set image`.
# Placeholder below until the first successful CI run pins a real digest.
- name: ghcr.io/david-uka/sample-app
newTag: dev
newTag: sha-0000000
6 changes: 5 additions & 1 deletion apps/sample-app/overlays/prod/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,9 @@ patches:
path: /spec/template/spec/containers/0/resources/limits/memory
value: 256Mi
images:
# Pinned to an immutable sha- tag, never a floating name (dev/staging/prod).
# CI (ci.yml's bump-dev-overlay job, or promote.yml for staging/prod) is the only
# thing that should change this value, via `kustomize edit set image`.
# Placeholder below until the first successful CI run pins a real digest.
- name: ghcr.io/david-uka/sample-app
newTag: prod
newTag: sha-0000000
6 changes: 5 additions & 1 deletion apps/sample-app/overlays/staging/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,9 @@ patches:
path: /spec/template/spec/containers/0/env/0/value
value: staging
images:
# Pinned to an immutable sha- tag, never a floating name (dev/staging/prod).
# CI (ci.yml's bump-dev-overlay job, or promote.yml for staging/prod) is the only
# thing that should change this value, via `kustomize edit set image`.
# Placeholder below until the first successful CI run pins a real digest.
- name: ghcr.io/david-uka/sample-app
newTag: staging
newTag: sha-0000000
Loading