X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=nonrtric%2Fhelm%2Fkongstorage%2Fkongvalues.yaml;fp=nonrtric%2Fhelm%2Fkongstorage%2Fkongvalues.yaml;h=350cb033d37607f4e7c6d7afcfbb3def38602339;hb=b4dae855955956dc8b38a1ccaa4870320145207d;hp=0000000000000000000000000000000000000000;hpb=2bb0899010fad78a7cf2eca80ac19208580a63b6;p=it%2Fdep.git diff --git a/nonrtric/helm/kongstorage/kongvalues.yaml b/nonrtric/helm/kongstorage/kongvalues.yaml new file mode 100644 index 00000000..350cb033 --- /dev/null +++ b/nonrtric/helm/kongstorage/kongvalues.yaml @@ -0,0 +1,130 @@ + +# ============LICENSE_START=============================================== +# Copyright (C) 2024 OpenInfra Foundation Europe. All rights reserved. +# ======================================================================== +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ============LICENSE_END================================================= +# +# Default values for Kong's Helm Chart. +# +# Sections: +# - Deployment parameters +# - Kong parameters +# - Ingress Controller parameters +# - Postgres sub-chart parameters +# - Miscellaneous parameters +# For a detailed example of values.yaml, please see https://github.com/Kong/charts/blob/main/charts/kong/values.yaml +# ----------------------------------------------------------------------------- +# Deployment parameters +# ----------------------------------------------------------------------------- +deployment: + kong: + enabled: true + serviceAccount: + create: true + automountServiceAccountToken: false +# ----------------------------------------------------------------------------- +# Kong parameters +# ----------------------------------------------------------------------------- +env: + database: "postgres" +# Specify Kong's Docker image and repository details here +image: + repository: kong + tag: "3.4" + pullPolicy: IfNotPresent +# Specify Kong admin API service and listener configuration +admin: + enabled: true + type: NodePort + http: + # Enable plaintext HTTP listen for the admin API + enabled: true + servicePort: 8001 + containerPort: 8001 + nodePort: 32081 + parameters: [] + tls: + # Enable HTTPS listen for the admin API + enabled: false + servicePort: 8444 + containerPort: 8444 + nodePort: 32444 + parameters: + - http2 + ingress: + enabled: false +# Specify Kong proxy service configuration +proxy: + # Enable creating a Kubernetes service for the proxy + enabled: true + type: LoadBalancer + loadBalancerClass: + nameOverride: "" + annotations: {} + labels: + enable-metrics: "true" + http: + # Enable plaintext HTTP listen for the proxy + enabled: true + servicePort: 80 + containerPort: 8000 + # Set a nodePort which is available if service type is NodePort + nodePort: 32080 + parameters: [] + tls: + # Enable HTTPS listen for the proxy + enabled: false + servicePort: 443 + containerPort: 8443 + parameters: + - http2 +# ----------------------------------------------------------------------------- +# Ingress Controller parameters +# ----------------------------------------------------------------------------- +ingressController: + enabled: true + installCRDs: false + image: + repository: kong/kubernetes-ingress-controller + tag: "3.0" + env: + kong_admin_tls_skip_verify: true +# ----------------------------------------------------------------------------- +# Postgres sub-chart parameters +# ----------------------------------------------------------------------------- +postgresql: + enabled: true + auth: + username: kong + database: kong + password: kong + postgresPassword: kong + image: + # use postgres < 14 until is https://github.com/Kong/kong/issues/8533 resolved + tag: 13.11.0-debian-11-r20 + service: + ports: + postgresql: "5432" + volumePermissions: + enabled: true + primary: + persistence: + existingClaim: kongpvc +# ----------------------------------------------------------------------------- +# Miscellaneous parameters +# ----------------------------------------------------------------------------- +waitImage: + enabled: true + pullPolicy: IfNotPresent +replicaCount: 1