Skip to content

Commit

Permalink
chore(template/k8s): Add tag as separate config value
Browse files Browse the repository at this point in the history
  • Loading branch information
simenandre committed Jun 6, 2024
1 parent 3f2e842 commit 8b1de0f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion templates/simple-k8s-sql-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ config:
type: string
image:
type: string
tag:
type: string
resources:
namespace:
type: kubernetes:core/v1:Namespace
Expand Down Expand Up @@ -74,7 +76,7 @@ resources:
"iam.gke.io/gke-metadata-server-enabled": "true"
containers:
- name: app
image: ${image}
image: ${image}:${tag}
ports:
- containerPort: 8484
envFrom:
Expand Down

0 comments on commit 8b1de0f

Please sign in to comment.