Skip to content

Commit fccb1f3

Browse files
authored
Fixes mismatch of .Values.ingress.hosts (#39)
1 parent 9f5c6bc commit fccb1f3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

charts/yourls/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
2-
version: 2.1.1
2+
version: 2.1.2
33
name: yourls
44
description: Your Own URL Shortener
55
appVersion: 1.8.1

charts/yourls/values.schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
"type": "boolean",
161161
"default": false
162162
},
163-
"rules": {
163+
"hosts": {
164164
"title": "YOURLS ingress rules",
165165
"type": "array",
166166
"items": {

charts/yourls/values.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ ingress:
116116
enabled: false
117117
annotations:
118118
kubernetes.io/ingress.class: nginx
119-
rules:
120-
- host: yourls.local
119+
hosts:
120+
- name: yourls.local
121121
path: /
122122

123123
# Set this to true in order to enable TLS on the ingress record
@@ -220,6 +220,6 @@ metrics:
220220
## - name: your-image-name
221221
## image: your-image
222222
## imagePullPolicy: Always
223-
## command: ['sh', '-c', 'copy plugins from git and push to /var/www/user. Should work with extraVolumeMounts and extraVolumes']
223+
## command: ['sh', '-c', 'copy plugins from git and push to /var/www/user. Should work with volumeMounts and volumes']
224224
##
225225
initContainers: {}

0 commit comments

Comments
 (0)