Skip to content

Commit

Permalink
fix: drone root ca image for staging
Browse files Browse the repository at this point in the history
  • Loading branch information
Maurice Faber committed Aug 29, 2021
1 parent f218659 commit 6cbc671
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/drone/templates/deployment-server.yaml
@@ -1,5 +1,5 @@
{{- if eq (include "drone.providerOK" .) "true" }}
{{- $image := (print .Values.images.server.repository .Values.images.server.tag) }}
{{- $image := (printf "%s:%s" .Values.images.server.repository .Values.images.server.tag) }}
apiVersion: apps/v1
kind: Deployment
metadata:
Expand Down
2 changes: 1 addition & 1 deletion charts/gitea/templates/gitea/statefulset.yaml
Expand Up @@ -40,7 +40,7 @@ spec:
initContainers:
{{- include "extraRootCA.init" (dict "image" $image "rootCA" .Values.extraRootCA) | nindent 8 }}
- name: init
image: "{{ include "gitea.image" . }}"
image: "{{ $image }}"
command: ["/usr/sbin/init_gitea.sh"]
{{- include "common.resources" . | nindent 10 }}
env:
Expand Down

0 comments on commit 6cbc671

Please sign in to comment.