Skip to content

Commit

Permalink
chore: rename sshkeyHandler to apisidecarhandler
Browse files Browse the repository at this point in the history
  • Loading branch information
tobybellwood committed Jun 18, 2024
1 parent 681a004 commit 106e65d
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ install-lagoon-core: install-minio
--set autoIdler.enabled=false \
--set backupHandler.enabled=false \
--set broker.image.repository=$(IMAGE_REGISTRY)/broker \
--set sshkeyHandler.image.repository=$(IMAGE_REGISTRY)/api-sidecar-handler \
--set apiSidecarHandler.image.repository=$(IMAGE_REGISTRY)/api-sidecar-handler \
--set insightsHandler.enabled=false \
--set keycloak.image.repository=$(IMAGE_REGISTRY)/keycloak \
--set keycloakDB.image.repository=$(IMAGE_REGISTRY)/keycloak-db \
Expand Down
2 changes: 1 addition & 1 deletion charts/lagoon-core/ci/linter-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ apiRedis:
requests:
cpu: "10m"

sshkeyHandler:
apiSidecarHandler:
image:
repository: uselagoon/api-sidecar-handler

Expand Down
2 changes: 1 addition & 1 deletion charts/lagoon-core/ci/testlagoon-main-override.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ apiRedis:
image:
repository: testlagoon/api-redis

sshkeyHandler:
apiSidecarHandler:
image:
repository: testlagoon/api-sidecar-handler
tag: pr-3662
Expand Down
4 changes: 2 additions & 2 deletions charts/lagoon-core/templates/api.deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ spec:
- name: api-sidecar-handler
securityContext:
{{- toYaml .Values.api.securityContext | nindent 10 }}
image: "{{ .Values.sshkeyHandler.image.repository }}:{{ coalesce .Values.sshkeyHandler.image.tag .Values.imageTag .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.sshkeyHandler.image.pullPolicy }}
image: "{{ .Values.apiSidecarHandler.image.repository }}:{{ coalesce .Values.apiSidecarHandler.image.tag .Values.imageTag .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.apiSidecarHandler.image.pullPolicy }}
ports:
- name: http-3333
containerPort: 3333
Expand Down
4 changes: 2 additions & 2 deletions charts/lagoon-core/templates/webhooks2tasks.deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ spec:
- name: api-sidecar-handler
securityContext:
{{- toYaml .Values.webhooks2tasks.securityContext | nindent 10 }}
image: "{{ .Values.sshkeyHandler.image.repository }}:{{ coalesce .Values.sshkeyHandler.image.tag .Values.imageTag .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.sshkeyHandler.image.pullPolicy }}
image: "{{ .Values.apiSidecarHandler.image.repository }}:{{ coalesce .Values.apiSidecarHandler.image.tag .Values.imageTag .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.apiSidecarHandler.image.pullPolicy }}
ports:
- name: http-3333
containerPort: 3333
Expand Down
2 changes: 1 addition & 1 deletion charts/lagoon-core/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ apiRedis:
type: ClusterIP
port: 6379

sshkeyHandler:
apiSidecarHandler:
image:
repository: uselagoon/api-sidecar-handler
pullPolicy: Always
Expand Down

0 comments on commit 106e65d

Please sign in to comment.