Skip to content

Commit

Permalink
Merge pull request #76 from catenax-ng/qualitygate
Browse files Browse the repository at this point in the history
fix: Updated values file
  • Loading branch information
SebastianBezold authored Sep 5, 2023
2 parents edf6ea3 + cc49b1a commit 7b1758a
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 11 deletions.
50 changes: 50 additions & 0 deletions charts/orchestrator/values-int.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#################################################################################
# Copyright (c) 2022,2023 T-Systems International GmbH
# Copyright (c) 2022,2023 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License, Version 2.0 which is available at
# https://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.
#
# SPDX-License-Identifier: Apache-2.0
################################################################################

ingress:
# -- If you want to enable or disable the ingress
enabled: true
# -- a reference to an Ingress Class resource that contains additional configuration including the name of the controller that should implement the class
className: nginx
# -- Annotations to add to the ingress
annotations:
nginx.ingress.kubernetes.io/backend-protocol: HTTP
cert-manager.io/cluster-issuer: "letsencrypt-prod"
nginx.ingress.kubernetes.io/affinity: "cookie"
nginx.ingress.kubernetes.io/session-cookie-max-age: "172800"

# -- Host of the application on which application runs
host: "orchestrator.int.cx.dih-cloud.com"

secretRef: "managed-service-orchestrator-int-secret"

postgresql:
# -- Enable the dependency postgres database
enabled: true
metrics:
containerSecurityContext:
enabled: false
auth:
username: "orchdbuser"
database: "orchdb"
existingSecret: "managed-service-orchestrator-int-secret"
secretKeys:
adminPasswordKey: "postgres-password"
userPasswordKey: "password"
18 changes: 7 additions & 11 deletions charts/orchestrator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,7 @@ ingress:
# -- a reference to an Ingress Class resource that contains additional configuration including the name of the controller that should implement the class
className: nginx
# -- Annotations to add to the ingress
annotations:
nginx.ingress.kubernetes.io/backend-protocol: HTTP
cert-manager.io/cluster-issuer: "letsencrypt-prod"
nginx.ingress.kubernetes.io/affinity: "cookie"
nginx.ingress.kubernetes.io/session-cookie-max-age: "172800"
annotations: {}

# -- Host of the application on which application runs
host: ""
Expand Down Expand Up @@ -117,7 +113,7 @@ readinessProbe:
successThreshold: 1
timeoutSeconds: 1

secretRef: "managed-service-orchestrator-int-secret"
secretRef: ""

postgresql:
# -- Enable the dependency postgres database
Expand All @@ -126,9 +122,9 @@ postgresql:
containerSecurityContext:
enabled: false
auth:
username: "orchdbuser"
database: "orchdb"
existingSecret: "managed-service-orchestrator-int-secret"
username: ""
database: ""
existingSecret: ""
secretKeys:
adminPasswordKey: "postgres-password"
userPasswordKey: "password"
adminPasswordKey: ""
userPasswordKey: ""

0 comments on commit 7b1758a

Please sign in to comment.