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
2 changes: 1 addition & 1 deletion manifests/helloworld/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
- name: {{ .Chart.Name }}
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Chart.AppVersion }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: IfNotPresent
args:
- server
Expand Down
2 changes: 2 additions & 0 deletions manifests/helloworld/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ service:

image:
repository: ghcr.io/pipe-cd/helloworld
# Overrides the image tag whose default is the chart appVersion.
tag: ""

resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
Expand Down
5 changes: 3 additions & 2 deletions manifests/pipecd/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ spec:
{{- end }}
{{- end }}
- name: server
image: "{{ .Values.server.image.repository }}:{{ .Chart.AppVersion }}"
image: "{{ .Values.server.image.repository }}:{{ .Values.server.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: IfNotPresent
args:
- server
Expand Down Expand Up @@ -284,7 +284,7 @@ spec:
readOnly: true
{{- end }}
- name: ops
image: "{{ .Values.ops.image.repository }}:{{ .Chart.AppVersion }}"
image: "{{ .Values.ops.image.repository }}:{{ .Values.ops.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: IfNotPresent
args:
- ops
Expand Down Expand Up @@ -371,6 +371,7 @@ spec:
{{- end }}

---
# MinIO File Store
apiVersion: apps/v1
kind: Deployment
metadata:
Expand Down
4 changes: 4 additions & 0 deletions manifests/pipecd/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ gateway:
server:
image:
repository: ghcr.io/pipe-cd/pipecd
# Overrides the image tag whose default is the chart appVersion.
tag: ""
replicasCount: 1
args:
cacheAddress: ""
Expand All @@ -51,6 +53,8 @@ cache:
ops:
image:
repository: ghcr.io/pipe-cd/pipecd
# Overrides the image tag whose default is the chart appVersion.
tag: ""
args:
cacheAddress: ""
# One of "humanize", "json", or "console" is available.
Expand Down
4 changes: 2 additions & 2 deletions manifests/piped/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ spec:
- name: piped
imagePullPolicy: IfNotPresent
{{- if .Values.launcher.enabled }}
image: "{{ .Values.launcher.image.repository }}:{{ .Chart.AppVersion }}"
image: "{{ .Values.launcher.image.repository }}:{{ .Values.launcher.image.tag | default .Chart.AppVersion }}"
args:
{{- include "piped.launcherArgs" . | nindent 12 }}
{{- else }}
image: "{{ .Values.image.repository }}:{{ .Chart.AppVersion }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
args:
{{- include "piped.pipedArgs" . | nindent 12 }}
{{- end }}
Expand Down
4 changes: 4 additions & 0 deletions manifests/piped/values.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
image:
repository: ghcr.io/pipe-cd/piped
# Overrides the image tag whose default is the chart appVersion.
tag: ""

args:
metrics: true
Expand All @@ -19,6 +21,8 @@ launcher:
enabled: false
image:
repository: ghcr.io/pipe-cd/launcher
# Overrides the image tag whose default is the chart appVersion.
tag: ""
configFromGitRepo:
# Whether to load Piped config that is being stored in a git repository.
enabled: false
Expand Down
2 changes: 1 addition & 1 deletion manifests/site/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: site
image: "{{ .Values.image.repository }}:{{ .Chart.AppVersion }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down
2 changes: 2 additions & 0 deletions manifests/site/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ ingress:

image:
repository: ghcr.io/pipe-cd/site
# Overrides the image tag whose default is the chart appVersion.
tag: ""

resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
Expand Down