mirror of
https://github.com/bjw-s-labs/helm-charts.git
synced 2025-07-03 16:37:04 +02:00
docs: Update to reflect app-template v3.0.0 changes
This commit is contained in:
parent
0c6a438040
commit
6d70e92b44
7 changed files with 32 additions and 38 deletions
|
@ -18,9 +18,7 @@ controllers:
|
||||||
|
|
||||||
service:
|
service:
|
||||||
main:
|
main:
|
||||||
# The controller for this service is set to
|
controller: main # (1)!
|
||||||
# "main" by the default app-template values
|
|
||||||
# controller: main
|
|
||||||
ports:
|
ports:
|
||||||
http:
|
http:
|
||||||
port: 8080
|
port: 8080
|
||||||
|
@ -58,9 +56,7 @@ controllers:
|
||||||
|
|
||||||
service:
|
service:
|
||||||
main:
|
main:
|
||||||
# The controller for this service is set to
|
controller: main # (1)!
|
||||||
# "main" by the default app-template values
|
|
||||||
# controller: main
|
|
||||||
ports:
|
ports:
|
||||||
http:
|
http:
|
||||||
port: 8080
|
port: 8080
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
---
|
---
|
||||||
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/app-template-3.0.0/charts/other/app-template/schemas/helmrelease-helm-v2beta2.schema.json
|
||||||
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
||||||
kind: HelmRelease
|
kind: HelmRelease
|
||||||
metadata:
|
metadata:
|
||||||
|
@ -11,7 +12,7 @@ spec:
|
||||||
chart: app-template
|
chart: app-template
|
||||||
# -- Version of the app-template helm chart
|
# -- Version of the app-template helm chart
|
||||||
# this example is not automatically updated, so be sure to use the latest chart version
|
# this example is not automatically updated, so be sure to use the latest chart version
|
||||||
version: 0.1.1
|
version: 3.0.0
|
||||||
interval: 15m
|
interval: 15m
|
||||||
sourceRef:
|
sourceRef:
|
||||||
kind: HelmRepository
|
kind: HelmRepository
|
||||||
|
@ -54,30 +55,28 @@ spec:
|
||||||
ingress:
|
ingress:
|
||||||
# -- Enable and configure ingress settings for the chart under this key.
|
# -- Enable and configure ingress settings for the chart under this key.
|
||||||
main:
|
main:
|
||||||
enabled: true
|
|
||||||
hosts:
|
hosts:
|
||||||
- host: chart-example.local
|
- host: chart-example.local
|
||||||
paths:
|
paths:
|
||||||
- path: /
|
- path: /
|
||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
service:
|
service:
|
||||||
name: main
|
identifier: main
|
||||||
port: http
|
port: http
|
||||||
- path: /notifications/hub/negotiate
|
- path: /notifications/hub/negotiate
|
||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
service:
|
service:
|
||||||
name: main
|
identifier: main
|
||||||
port: http
|
port: http
|
||||||
- path: /notifications/hub
|
- path: /notifications/hub
|
||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
service:
|
service:
|
||||||
name: main
|
identifier: main
|
||||||
port: websocket
|
port: websocket
|
||||||
|
|
||||||
route:
|
route:
|
||||||
# -- Enable and configure route settings for the chart under this key.
|
# -- Enable and configure route settings for the chart under this key.
|
||||||
main:
|
main:
|
||||||
enabled: true
|
|
||||||
parentRefs:
|
parentRefs:
|
||||||
- name: gateway
|
- name: gateway
|
||||||
namespace: gateway-namespace
|
namespace: gateway-namespace
|
||||||
|
@ -119,7 +118,6 @@ spec:
|
||||||
# -- Configure persistence settings for the chart under this key.
|
# -- Configure persistence settings for the chart under this key.
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
|
||||||
type: persistentVolumeClaim
|
type: persistentVolumeClaim
|
||||||
accessMode: ReadWriteOnce
|
accessMode: ReadWriteOnce
|
||||||
size: 1Gi
|
size: 1Gi
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
---
|
||||||
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/app-template-3.0.0/charts/other/app-template/values.schema.json
|
||||||
|
|
||||||
# Configure options applied to all pods
|
# Configure options applied to all pods
|
||||||
defaultPodOptions:
|
defaultPodOptions:
|
||||||
automountServiceAccountToken: false
|
automountServiceAccountToken: false
|
||||||
|
@ -63,30 +66,28 @@ service:
|
||||||
ingress:
|
ingress:
|
||||||
# Configure an Ingress for the main application
|
# Configure an Ingress for the main application
|
||||||
main:
|
main:
|
||||||
enabled: true
|
className: "external-nginx"
|
||||||
ingressClassName: "external-nginx"
|
|
||||||
hosts:
|
hosts:
|
||||||
- host: &host "hass.example.local"
|
- host: &host "hass.example.local"
|
||||||
paths:
|
paths:
|
||||||
- path: /
|
- path: /
|
||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
service:
|
service:
|
||||||
name: main
|
identifier: main
|
||||||
port: http
|
port: http
|
||||||
tls:
|
tls:
|
||||||
- hosts:
|
- hosts:
|
||||||
- *host
|
- *host
|
||||||
# Configure an Ingress for the code-server sidecar
|
# Configure an Ingress for the code-server sidecar
|
||||||
code:
|
code:
|
||||||
enabled: true
|
className: "internal-nginx"
|
||||||
ingressClassName: "internal-nginx"
|
|
||||||
hosts:
|
hosts:
|
||||||
- host: &host-code "hass-code.example.local"
|
- host: &host-code "hass-code.example.local"
|
||||||
paths:
|
paths:
|
||||||
- path: /
|
- path: /
|
||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
service:
|
service:
|
||||||
name: code
|
identifier: code
|
||||||
port: http
|
port: http
|
||||||
tls:
|
tls:
|
||||||
- hosts:
|
- hosts:
|
||||||
|
@ -95,14 +96,12 @@ ingress:
|
||||||
persistence:
|
persistence:
|
||||||
# Configure the main configuration storage location
|
# Configure the main configuration storage location
|
||||||
config:
|
config:
|
||||||
enabled: true
|
|
||||||
existingClaim: home-assistant-config
|
existingClaim: home-assistant-config
|
||||||
globalMounts:
|
globalMounts:
|
||||||
- path: /config
|
- path: /config
|
||||||
|
|
||||||
# Configure an NFS mount to store backups on
|
# Configure an NFS mount to store backups on
|
||||||
backup:
|
backup:
|
||||||
enabled: true
|
|
||||||
type: nfs
|
type: nfs
|
||||||
server: nas.example.lan
|
server: nas.example.lan
|
||||||
path: /volume/Backups/k8s/hass
|
path: /volume/Backups/k8s/hass
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
---
|
||||||
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/app-template-3.0.0/charts/other/app-template/values.schema.json
|
||||||
|
|
||||||
# Configure options applied to all pods
|
# Configure options applied to all pods
|
||||||
defaultPodOptions:
|
defaultPodOptions:
|
||||||
automountServiceAccountToken: false
|
automountServiceAccountToken: false
|
||||||
|
@ -74,15 +77,14 @@ service:
|
||||||
ingress:
|
ingress:
|
||||||
# Configure an Ingress for the main application
|
# Configure an Ingress for the main application
|
||||||
main:
|
main:
|
||||||
enabled: true
|
className: "external-nginx"
|
||||||
ingressClassName: "external-nginx"
|
|
||||||
hosts:
|
hosts:
|
||||||
- host: &host "qb.example.local"
|
- host: &host "qb.example.local"
|
||||||
paths:
|
paths:
|
||||||
- path: /
|
- path: /
|
||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
service:
|
service:
|
||||||
name: main
|
identifier: main
|
||||||
port: http
|
port: http
|
||||||
tls:
|
tls:
|
||||||
- hosts:
|
- hosts:
|
||||||
|
@ -91,7 +93,6 @@ ingress:
|
||||||
persistence:
|
persistence:
|
||||||
# Configure the main configuration storage location
|
# Configure the main configuration storage location
|
||||||
config:
|
config:
|
||||||
enabled: true
|
|
||||||
existingClaim: qbittorrent-config
|
existingClaim: qbittorrent-config
|
||||||
advancedMounts:
|
advancedMounts:
|
||||||
main:
|
main:
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
---
|
||||||
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/app-template-3.0.0/charts/other/app-template/values.schema.json
|
||||||
|
|
||||||
controllers:
|
controllers:
|
||||||
main:
|
main:
|
||||||
strategy: Recreate
|
strategy: Recreate
|
||||||
|
@ -33,30 +36,28 @@ service:
|
||||||
ingress:
|
ingress:
|
||||||
# -- Enable and configure ingress settings for the chart under this key.
|
# -- Enable and configure ingress settings for the chart under this key.
|
||||||
main:
|
main:
|
||||||
enabled: true
|
|
||||||
hosts:
|
hosts:
|
||||||
- host: chart-example.local
|
- host: chart-example.local
|
||||||
paths:
|
paths:
|
||||||
- path: /
|
- path: /
|
||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
service:
|
service:
|
||||||
name: main
|
identifier: main
|
||||||
port: http
|
port: http
|
||||||
- path: /notifications/hub/negotiate
|
- path: /notifications/hub/negotiate
|
||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
service:
|
service:
|
||||||
name: main
|
identifier: main
|
||||||
port: http
|
port: http
|
||||||
- path: /notifications/hub
|
- path: /notifications/hub
|
||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
service:
|
service:
|
||||||
name: main
|
identifier: main
|
||||||
port: websocket
|
port: websocket
|
||||||
|
|
||||||
route:
|
route:
|
||||||
# -- Enable and configure route settings for the chart under this key.
|
# -- Enable and configure route settings for the chart under this key.
|
||||||
main:
|
main:
|
||||||
enabled: true
|
|
||||||
parentRefs:
|
parentRefs:
|
||||||
- name: gateway
|
- name: gateway
|
||||||
namespace: gateway-namespace
|
namespace: gateway-namespace
|
||||||
|
@ -98,7 +99,6 @@ route:
|
||||||
# -- Configure persistence settings for the chart under this key.
|
# -- Configure persistence settings for the chart under this key.
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
|
||||||
type: persistentVolumeClaim
|
type: persistentVolumeClaim
|
||||||
accessMode: ReadWriteOnce
|
accessMode: ReadWriteOnce
|
||||||
size: 1Gi
|
size: 1Gi
|
||||||
|
|
|
@ -5,7 +5,7 @@ helmCharts:
|
||||||
- name: app-template
|
- name: app-template
|
||||||
repo: https://bjw-s.github.io/helm-charts/
|
repo: https://bjw-s.github.io/helm-charts/
|
||||||
# this example is not automatically updated, so be sure to use the latest chart version
|
# this example is not automatically updated, so be sure to use the latest chart version
|
||||||
version: 0.1.1
|
version: 3.0.0
|
||||||
releaseName: &releaseName vaultwarden
|
releaseName: &releaseName vaultwarden
|
||||||
namespace: &releaseNamespace default
|
namespace: &releaseNamespace default
|
||||||
valuesFile: values.yaml
|
valuesFile: values.yaml
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
---
|
||||||
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/app-template-3.0.0/charts/other/app-template/values.schema.json
|
||||||
|
|
||||||
controllers:
|
controllers:
|
||||||
main:
|
main:
|
||||||
strategy: Recreate
|
strategy: Recreate
|
||||||
|
@ -27,36 +30,33 @@ service:
|
||||||
http:
|
http:
|
||||||
port: 80
|
port: 80
|
||||||
websocket:
|
websocket:
|
||||||
enabled: true
|
|
||||||
port: 3012
|
port: 3012
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
# -- Enable and configure ingress settings for the chart under this key.
|
# -- Enable and configure ingress settings for the chart under this key.
|
||||||
main:
|
main:
|
||||||
enabled: true
|
|
||||||
hosts:
|
hosts:
|
||||||
- host: chart-example.local
|
- host: chart-example.local
|
||||||
paths:
|
paths:
|
||||||
- path: /
|
- path: /
|
||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
service:
|
service:
|
||||||
name: main
|
identifier: main
|
||||||
port: http
|
port: http
|
||||||
- path: /notifications/hub/negotiate
|
- path: /notifications/hub/negotiate
|
||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
service:
|
service:
|
||||||
name: main
|
identifier: main
|
||||||
port: http
|
port: http
|
||||||
- path: /notifications/hub
|
- path: /notifications/hub
|
||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
service:
|
service:
|
||||||
name: main
|
identifier: main
|
||||||
port: websocket
|
port: websocket
|
||||||
|
|
||||||
# -- Configure persistence settings for the chart under this key.
|
# -- Configure persistence settings for the chart under this key.
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
|
||||||
type: persistentVolumeClaim
|
type: persistentVolumeClaim
|
||||||
accessMode: ReadWriteOnce
|
accessMode: ReadWriteOnce
|
||||||
size: 1Gi
|
size: 1Gi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue