chart: Version is upgraded
`VirtualService` resource is fixed
This commit is contained in:
parent
ec0b56372a
commit
c1667d4603
@ -2,5 +2,5 @@ apiVersion: v2
|
|||||||
name: badhouseplants-net
|
name: badhouseplants-net
|
||||||
description: A Helm chart for Kubernetes
|
description: A Helm chart for Kubernetes
|
||||||
type: application
|
type: application
|
||||||
version: 0.3.7
|
version: 0.3.8
|
||||||
appVersion: "1.16.0"
|
appVersion: "1.16.0"
|
||||||
|
@ -3,4 +3,14 @@ apiVersion: v1
|
|||||||
kind: Namespace
|
kind: Namespace
|
||||||
metadata:
|
metadata:
|
||||||
name: {{ .Values.namespace.name }}
|
name: {{ .Values.namespace.name }}
|
||||||
|
labels:
|
||||||
|
{{- include "badhouseplants-net.labels" . | nindent 4 }}
|
||||||
|
{{- range $key, $value := .Values.namespace.labels}}
|
||||||
|
{{ $key }}: {{ $value }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.namespace.annotations }}
|
||||||
|
annotations:
|
||||||
|
{{- toYaml . | nindent 4 }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
{{- end }}
|
{{- end }}
|
@ -2,6 +2,8 @@ apiVersion: v1
|
|||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
name: nginx-config
|
name: nginx-config
|
||||||
|
labels:
|
||||||
|
{{- include "badhouseplants-net.labels" . | nindent 4 }}
|
||||||
data:
|
data:
|
||||||
default.conf: |
|
default.conf: |
|
||||||
server {
|
server {
|
||||||
|
@ -2,6 +2,8 @@ apiVersion: v1
|
|||||||
kind: Secret
|
kind: Secret
|
||||||
metadata:
|
metadata:
|
||||||
name: rclone-config
|
name: rclone-config
|
||||||
|
labels:
|
||||||
|
{{- include "badhouseplants-net.labels" . | nindent 4 }}
|
||||||
type: generic
|
type: generic
|
||||||
data:
|
data:
|
||||||
# the data is abbreviated in this example
|
# the data is abbreviated in this example
|
||||||
|
@ -2,13 +2,20 @@
|
|||||||
apiVersion: networking.istio.io/v1beta1
|
apiVersion: networking.istio.io/v1beta1
|
||||||
kind: VirtualService
|
kind: VirtualService
|
||||||
metadata:
|
metadata:
|
||||||
annotations:
|
|
||||||
labels:
|
|
||||||
name: blog-virtual-service
|
name: blog-virtual-service
|
||||||
|
labels:
|
||||||
|
{{- include "badhouseplants-net.labels" . | nindent 4 }}
|
||||||
|
{{- with .Values.istio.annotations }}
|
||||||
|
annotations:
|
||||||
|
{{- toYaml . | nindent 4 }}
|
||||||
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
gateways:
|
gateways:
|
||||||
- istio-system/badhouseplants-net
|
- istio-system/badhouseplants-net
|
||||||
hosts: {{ .Values.istio.hosts }}
|
hosts:
|
||||||
|
{{- range .Values.istio.hosts}}
|
||||||
|
- {{ . }}
|
||||||
|
{{- end }}
|
||||||
http:
|
http:
|
||||||
- match:
|
- match:
|
||||||
- uri:
|
- uri:
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
|
|
||||||
namespace:
|
namespace:
|
||||||
|
annotations: {}
|
||||||
|
labels:
|
||||||
|
istio-injection: enabled
|
||||||
enabled: true
|
enabled: true
|
||||||
name: badhouseplants-application
|
name: badhouseplants-application
|
||||||
|
|
||||||
@ -41,6 +44,7 @@ hugo:
|
|||||||
buildDrafts: false
|
buildDrafts: false
|
||||||
|
|
||||||
istio:
|
istio:
|
||||||
|
annotations: {}
|
||||||
enabled: true
|
enabled: true
|
||||||
hosts:
|
hosts:
|
||||||
- badhouseplants.net
|
- badhouseplants.net
|
||||||
@ -63,17 +67,11 @@ volumes:
|
|||||||
name: s3-data
|
name: s3-data
|
||||||
sizeLimit: 1Gi
|
sizeLimit: 1Gi
|
||||||
|
|
||||||
# -------------------------------------
|
|
||||||
# -- Default values that I haven't
|
|
||||||
# -- touched
|
|
||||||
# -------------------------------------
|
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
nameOverride: ""
|
nameOverride: ""
|
||||||
fullnameOverride: ""
|
fullnameOverride: ""
|
||||||
|
|
||||||
deployAnnotations:
|
deployAnnotations: {}
|
||||||
keel.sh/trigger: poll
|
|
||||||
keel.sh/policy: 'force'
|
|
||||||
|
|
||||||
podSecurityContext: {}
|
podSecurityContext: {}
|
||||||
# fsGroup: 2000
|
# fsGroup: 2000
|
||||||
|
Reference in New Issue
Block a user