Implement dynamic envs (#19)
Reviewed-on: https://git.badhouseplants.net/allanger/badhouseplants-net/pulls/19
This commit is contained in:
@ -1,10 +1,72 @@
|
||||
replicaCount: 1
|
||||
|
||||
image:
|
||||
repository: git.badhouseplants.net/allanger/badhouseplants-net
|
||||
pullPolicy: Always
|
||||
tag: latest
|
||||
namespace:
|
||||
enabled: true
|
||||
name: badhouseplants-application
|
||||
|
||||
nginx:
|
||||
container:
|
||||
name: nginx
|
||||
resources: {}
|
||||
image:
|
||||
repository: nginx
|
||||
pullPolicy: Always
|
||||
tag: latest
|
||||
|
||||
rclone:
|
||||
container:
|
||||
name: rclone
|
||||
resources: {}
|
||||
image:
|
||||
repository: rclone/rclone
|
||||
pullPolicy: Always
|
||||
tag: latest
|
||||
config: |-
|
||||
[badhouseplants-public]
|
||||
type = s3
|
||||
provider = Minio
|
||||
region = us-west-1
|
||||
endpoint = s3.badhouseplants.net
|
||||
location_constraint = us-west-1
|
||||
|
||||
hugo:
|
||||
container:
|
||||
name: badhouseplants-net
|
||||
resources: {}
|
||||
image:
|
||||
repository: git.badhouseplants.net/allanger/badhouseplants-net
|
||||
pullPolicy: Always
|
||||
tag: latest
|
||||
baseURL: badhouseplants.net
|
||||
buildDrafts: false
|
||||
|
||||
istio:
|
||||
enabled: true
|
||||
hosts:
|
||||
- badhouseplants.net
|
||||
- www.badhouseplants.net
|
||||
prefix: /
|
||||
|
||||
volumes:
|
||||
# ----------------------------------------------
|
||||
# -- An emptydir volume where hugo should
|
||||
# -- put the static content
|
||||
# ----------------------------------------------
|
||||
public:
|
||||
name: public-content
|
||||
sizeLimit: 1Gi
|
||||
# ----------------------------------------------
|
||||
# -- An emptydir volume where rclone should
|
||||
# -- download pictures
|
||||
# ----------------------------------------------
|
||||
rclone:
|
||||
name: s3-data
|
||||
sizeLimit: 1Gi
|
||||
|
||||
# -------------------------------------
|
||||
# -- Default values that I haven't
|
||||
# -- touched
|
||||
# -------------------------------------
|
||||
imagePullSecrets: []
|
||||
nameOverride: ""
|
||||
fullnameOverride: ""
|
||||
@ -30,29 +92,6 @@ service:
|
||||
|
||||
ingress:
|
||||
enabled: false
|
||||
annotations:
|
||||
kubernetes.io/ingress.class: istio
|
||||
hosts:
|
||||
- host: badhouseplants.net
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
tls:
|
||||
- secretName: badhouseplants-wildcard-tls
|
||||
hosts:
|
||||
- badhouseplants.net
|
||||
|
||||
resources: {}
|
||||
# We usually recommend not to specify default resources and to leave this as a conscious
|
||||
# choice for the user. This also increases chances charts run on environments with little
|
||||
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
||||
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
|
||||
# limits:
|
||||
# cpu: 100m
|
||||
# memory: 128Mi
|
||||
# requests:
|
||||
# cpu: 100m
|
||||
# memory: 128Mi
|
||||
|
||||
autoscaling:
|
||||
enabled: false
|
||||
@ -60,9 +99,3 @@ autoscaling:
|
||||
maxReplicas: 100
|
||||
targetCPUUtilizationPercentage: 80
|
||||
# targetMemoryUtilizationPercentage: 80
|
||||
|
||||
nodeSelector: {}
|
||||
|
||||
tolerations: []
|
||||
|
||||
affinity: {}
|
||||
|
Reference in New Issue
Block a user