Set nginx name to lowercase

This commit is contained in:
Jonathan Ervine 2020-07-31 09:57:12 +08:00
parent b8f7a3ac14
commit e0e4b24258
3 changed files with 4 additions and 3 deletions

View File

@ -14,7 +14,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
version: 0.1.1
version: 0.1.3
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.

View File

@ -6,7 +6,7 @@ metadata:
{{- include "wordpress.labels" . | nindent 4 }}
spec:
replicas: {{ .Values.replicaCount }}
serviceName: {{ .Chart.name }}
serviceName: {{ .Values.service.name }}
selector:
matchLabels:
{{- include "wordpress.selectorLabels" . | nindent 6 }}

View File

@ -4,7 +4,7 @@
replicaCount: 1
nginx:
name: NGINX
name: nginx
image:
repository: harbor.ervine.dev/library/x86_64/alpine/nginx
tag: alpine
@ -84,6 +84,7 @@ securityContext: {}
# runAsUser: 1000
service:
name: wordpress
type: ClusterIP
port: 80