ci: use push-charts nodejs tool to manage push to GHCR.io (#23)
This commit is contained in:
parent
8994c62db5
commit
394ce954f7
13 changed files with 1220 additions and 56 deletions
|
@ -4,7 +4,6 @@ fullnameOverride: ""
|
|||
|
||||
imagePullSecrets: []
|
||||
|
||||
|
||||
# Configurations that are relevant for all the components of the chart
|
||||
common:
|
||||
config:
|
||||
|
@ -21,7 +20,7 @@ common:
|
|||
createSecret:
|
||||
username: ""
|
||||
password: ""
|
||||
|
||||
|
||||
redis:
|
||||
host: immich-redis
|
||||
existingSecret:
|
||||
|
@ -41,7 +40,7 @@ server:
|
|||
maxReplicas: 100
|
||||
targetCPUUtilizationPercentage: 80
|
||||
# targetMemoryUtilizationPercentage: 80
|
||||
|
||||
|
||||
image:
|
||||
repository: ghcr.io/immich-app/immich-server
|
||||
pullPolicy: IfNotPresent
|
||||
|
@ -50,29 +49,31 @@ server:
|
|||
|
||||
podAnnotations: {}
|
||||
podLabels: {}
|
||||
|
||||
resources: {}
|
||||
|
||||
resources:
|
||||
{}
|
||||
# limits:
|
||||
# cpu: 100m
|
||||
# memory: 128Mi
|
||||
# requests:
|
||||
# cpu: 100m
|
||||
# memory: 128Mi
|
||||
|
||||
|
||||
service:
|
||||
type: ClusterIP
|
||||
port: 2283
|
||||
|
||||
|
||||
nodeSelector: {}
|
||||
|
||||
|
||||
tolerations: []
|
||||
|
||||
|
||||
affinity: {}
|
||||
|
||||
|
||||
podSecurityContext: {}
|
||||
# fsGroup: 2000
|
||||
|
||||
securityContext: {}
|
||||
|
||||
securityContext:
|
||||
{}
|
||||
# capabilities:
|
||||
# drop:
|
||||
# - ALL
|
||||
|
@ -81,7 +82,8 @@ server:
|
|||
# runAsUser: 1000
|
||||
|
||||
# Additional environment variables to set on the container.
|
||||
env: []
|
||||
env:
|
||||
[]
|
||||
# - name: DB_VECTOR_EXTENSION
|
||||
# value: "pgvector"
|
||||
# - name: SOME_OTHER_ENV
|
||||
|
@ -99,12 +101,11 @@ server:
|
|||
# secret:
|
||||
# secretName: mysecret
|
||||
# optional: false
|
||||
|
||||
|
||||
# Additional volumeMounts on the output Deployment definition.
|
||||
volumeMounts: []
|
||||
# - name: uploads
|
||||
# mountPath: /usr/src/app/upload
|
||||
|
||||
|
||||
machineLearning:
|
||||
enabled: false
|
||||
|
@ -113,49 +114,52 @@ machineLearning:
|
|||
# If enabled the cache will be stored in memory, rather than local disk. This will increase performance but will require more memory.
|
||||
useMemory: false
|
||||
sizeLimit: 10Gi
|
||||
|
||||
|
||||
replicaCount: 1
|
||||
|
||||
|
||||
image:
|
||||
repository: ghcr.io/immich-app/immich-machine-learning
|
||||
pullPolicy: IfNotPresent
|
||||
# Overrides the image tag whose default is the chart appVersion.
|
||||
tag: ""
|
||||
|
||||
|
||||
podAnnotations: {}
|
||||
podLabels: {}
|
||||
|
||||
resources: {}
|
||||
|
||||
resources:
|
||||
{}
|
||||
# limits:
|
||||
# cpu: 100m
|
||||
# memory: 128Mi
|
||||
# requests:
|
||||
# cpu: 100m
|
||||
# memory: 128Mi
|
||||
|
||||
|
||||
service:
|
||||
type: ClusterIP
|
||||
port: 3003
|
||||
|
||||
|
||||
nodeSelector: {}
|
||||
|
||||
|
||||
tolerations: []
|
||||
|
||||
|
||||
affinity: {}
|
||||
|
||||
|
||||
podSecurityContext: {}
|
||||
# fsGroup: 2000
|
||||
|
||||
securityContext: {}
|
||||
|
||||
securityContext:
|
||||
{}
|
||||
# capabilities:
|
||||
# drop:
|
||||
# - ALL
|
||||
# readOnlyRootFilesystem: true
|
||||
# runAsNonRoot: true
|
||||
# runAsUser: 1000
|
||||
|
||||
|
||||
# Additional environment variables to set on the container.
|
||||
env: []
|
||||
env:
|
||||
[]
|
||||
# - name: DB_VECTOR_EXTENSION
|
||||
# value: "pgvector"
|
||||
# - name: SOME_OTHER_ENV
|
||||
|
@ -163,7 +167,7 @@ machineLearning:
|
|||
# secretKeyRef:
|
||||
# name: mySecret
|
||||
# key: secretField
|
||||
|
||||
|
||||
# Additional volumes on the output Deployment definition.
|
||||
volumes: []
|
||||
# - name: uploads
|
||||
|
@ -173,7 +177,7 @@ machineLearning:
|
|||
# secret:
|
||||
# secretName: mysecret
|
||||
# optional: false
|
||||
|
||||
|
||||
# Additional volumeMounts on the output Deployment definition.
|
||||
volumeMounts: []
|
||||
# - name: uploads
|
||||
|
@ -195,7 +199,8 @@ serviceAccount:
|
|||
ingress:
|
||||
enabled: false
|
||||
className: ""
|
||||
annotations: {}
|
||||
annotations:
|
||||
{}
|
||||
# kubernetes.io/ingress.class: nginx
|
||||
# kubernetes.io/tls-acme: "true"
|
||||
hosts:
|
||||
|
@ -208,7 +213,6 @@ ingress:
|
|||
# hosts:
|
||||
# - chart-example.local
|
||||
|
||||
|
||||
# This block is for setting up the HTTPROUTE for more information can be found here: https://kubernetes.io/docs/concepts/services-networking/gateway/#api-kind-httproute
|
||||
httpRoute:
|
||||
enabled: false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue