All checks were successful
Run Check Script / check (pull_request) Successful in 1m37s
35 lines
823 B
YAML
35 lines
823 B
YAML
|
|
# Default values for harmony-example-rust-webapp-chart.
|
|
# This is a YAML-formatted file.
|
|
# Declare variables to be passed into your templates.
|
|
|
|
replicaCount: 1
|
|
|
|
image:
|
|
repository: hub.nationtech.io/harmony/harmony-example-rust-webapp
|
|
pullPolicy: IfNotPresent
|
|
# Overridden by the chart's appVersion
|
|
tag: "latest"
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 3000
|
|
|
|
ingress:
|
|
enabled: true
|
|
# Annotations for cert-manager to handle SSL.
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: "letsencrypt-prod"
|
|
# Add other annotations like nginx ingress class if needed
|
|
# kubernetes.io/ingress.class: nginx
|
|
hosts:
|
|
- host: chart-example.local
|
|
paths:
|
|
- path: /
|
|
pathType: ImplementationSpecific
|
|
tls:
|
|
- secretName: harmony-example-rust-webapp-tls
|
|
hosts:
|
|
- chart-example.local
|
|
|