Skip to content

Commit 534c297

Browse files
authored
fix env varibale name in deployments (#79)
1 parent 4dee53e commit 534c297

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/generators/k8s/templates/loaders/deployment.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spec:
2626
containers:
2727
- name: loader-container
2828
{%- if type == 'curl' %}
29-
image: {{ imageNamePrefix|default('ghcr.io/cisco-open/') }}app-simulator-loaders-{{ type }}:{{ imageVersion|default('latest') }}
29+
image: {{ imageNamePrefix|default('ghcr.io/cisco-open/') }}app-simulator-loaders-{{ type }}:{{ imageVersion|default('latest') }}
3030
env:
3131
- name: URLS
3232
value: {{ urls }}

scripts/generators/k8s/templates/services/deployment.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ spec:
3838
fieldRef:
3939
apiVersion: v1
4040
fieldPath: metadata.namespace
41-
- name: serviceName
41+
- name: SERVICE_NAME
4242
valueFrom:
4343
fieldRef:
4444
apiVersion: v1

0 commit comments

Comments
 (0)