Skip to content

Commit

Permalink
[stable/drone] bump version to rc5, simplify container names (helm#11054
Browse files Browse the repository at this point in the history
)

* [stable/drone] bump version to rc5, simplify container names

Signed-off-by: Max Williams <[email protected]>

* revert this, it was a local change

Signed-off-by: Max Williams <[email protected]>
  • Loading branch information
max-rocket-internet authored and k8s-ci-robot committed Feb 1, 2019
1 parent e3f1cd2 commit d3dea2d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions stable/drone/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: drone
home: https://drone.io/
icon: https://drone.io/apple-touch-icon.png
version: 2.0.0-rc.6
appVersion: 1.0.0-rc.4
version: 2.0.0-rc.7
appVersion: 1.0.0-rc.5
description: Drone is a Continuous Delivery system built on container technology
keywords:
- continuous-delivery
Expand Down
4 changes: 2 additions & 2 deletions stable/drone/templates/deployment-agent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
{{- end }}
serviceAccountName: {{ template "drone.serviceAccountName" . }}
containers:
- name: {{ template "drone.fullname" . }}-agent
- name: agent
image: "{{ .Values.images.agent.repository }}:{{ .Values.images.agent.tag }}"
imagePullPolicy: {{ .Values.images.agent.pullPolicy }}
ports:
Expand Down Expand Up @@ -72,7 +72,7 @@ spec:
hostPath:
path: /var/run/docker.sock
{{- else }}
- name: {{ template "drone.fullname" . }}-dind
- name: dind
image: "{{ .Values.images.dind.repository }}:{{ .Values.images.dind.tag }}"
imagePullPolicy: {{ .Values.images.dind.pullPolicy }}
{{- if .Values.dind.command }}
Expand Down
2 changes: 1 addition & 1 deletion stable/drone/templates/deployment-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ spec:
{{- end }}
serviceAccountName: {{ template "drone.serviceAccountName" . }}
containers:
- name: {{ template "drone.fullname" . }}-server
- name: server
image: "{{ .Values.images.server.repository }}:{{ .Values.images.server.tag }}"
imagePullPolicy: {{ .Values.images.server.pullPolicy }}
env:
Expand Down
4 changes: 2 additions & 2 deletions stable/drone/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ images:
##
server:
repository: "docker.io/drone/drone"
tag: 1.0.0-rc.4
tag: 1.0.0-rc.5
pullPolicy: IfNotPresent

## The official drone (agent) image, change tag to use a different version.
## ref: https://hub.docker.com/r/drone/agent/tags/
##
agent:
repository: "docker.io/drone/agent"
tag: 1.0.0-rc.4
tag: 1.0.0-rc.5
pullPolicy: IfNotPresent

## The official docker (dind) image, change tag to use a different version.
Expand Down

0 comments on commit d3dea2d

Please sign in to comment.