From 0e5f80d41e23de932e3c9dba10c33c395f7fd035 Mon Sep 17 00:00:00 2001 From: Arlan Lloyd Date: Tue, 26 Nov 2024 18:12:36 -0800 Subject: [PATCH 1/2] change default settings & update notes Signed-off-by: Arlan Lloyd --- charts/zot/values.yaml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/charts/zot/values.yaml b/charts/zot/values.yaml index ca0a7d7..321d480 100644 --- a/charts/zot/values.yaml +++ b/charts/zot/values.yaml @@ -6,7 +6,7 @@ image: repository: ghcr.io/project-zot/zot-linux-amd64 pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. - tag: "v2.1.2-rc3" + tag: "" # Defaults to the release namespace if not specified namespace: "" serviceAccount: @@ -18,26 +18,24 @@ serviceAccount: # If not set and create is true, a name is generated using the fullname template name: "" service: - type: NodePort + type: ClusterIP port: 5000 - nodePort: null # Set to a specific port if type is NodePort + nodePort: null # Set to a specific port if service.type: NodePort # Annotations to add to the service annotations: {} # Set to a static IP if a static IP is desired, only works when - # type: ClusterIP + # service.type: ClusterIP clusterIP: null # Enabling this will publicly expose your zot server # Only enable this if you have security enabled on your cluster ingress: enabled: false annotations: {} - # kubernetes.io/ingress.class: nginx - # kubernetes.io/tls-acme: "true" - # If using nginx, disable body limits and increase read and write timeouts + # Common annotations for nginx-ingress for handling size/timeouts # nginx.ingress.kubernetes.io/proxy-body-size: "0" # nginx.ingress.kubernetes.io/proxy-read-timeout: "600" # nginx.ingress.kubernetes.io/proxy-send-timeout: "600" - className: "nginx" + className: "" pathtype: ImplementationSpecific hosts: - host: chart-example.local From 110067d0cc859d1affa59bbd573cc41f577a2b20 Mon Sep 17 00:00:00 2001 From: Arlan Lloyd Date: Tue, 26 Nov 2024 18:23:23 -0800 Subject: [PATCH 2/2] use generic image repository Signed-off-by: Arlan Lloyd --- charts/zot/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/zot/values.yaml b/charts/zot/values.yaml index 321d480..9592b3f 100644 --- a/charts/zot/values.yaml +++ b/charts/zot/values.yaml @@ -3,7 +3,7 @@ # Declare variables to be passed into your templates. replicaCount: 1 image: - repository: ghcr.io/project-zot/zot-linux-amd64 + repository: ghcr.io/project-zot/zot pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: ""