Skip to content

Commit

Permalink
updated deployment with secret
Browse files Browse the repository at this point in the history
  • Loading branch information
adkumar1 committed Sep 5, 2023
1 parent 952d080 commit 8a4dd35
Show file tree
Hide file tree
Showing 2 changed files with 102 additions and 4 deletions.
97 changes: 97 additions & 0 deletions charts/orchestrator/templates/secret.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
#******************************************************************************
# 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
#*******************************************************************************

apiVersion: v1
kind: Secret
type: Opaque
metadata:
name: {{ .Values.secretRef }}
stringData:
connectorTestServiceUrl: default
connectorregisterUrl: default
connectorregisterkeycloakclientId: default
connectorregisterkeycloakclientSecret: default
connectorregisterkeycloaktokenURI: default
dapsJksUrl: default
dapsTokenUrl: default
dapsUrl: default
dbUrl: jdbc:postgresql://postgresql:5432/postgres
dbpassword: default
dbuser: postgres
dnsname: default
dnsnameProtocol: default
edc_miwUrl: default
edc_ssi_authorityId: default
emailpassword: default
emailuser: default
keycloakAuthserverUrl: default
keycloakBearerOnly: "true"
keycloakClientid: default
keycloakRealm: default
keycloakResource: default
keycloakSslRequired: external
keycloakUseResourceRoleMappings: "true"
kubeappsToken: default
kubeappsUrl: default
mail_from: default
mail_to: default
manual-connector-registration: "false"
manualupdate: "true"
password: default
portalclientid: default
portalclientsecret: default
portalemail: default
portaltokenurl: default
portalurl: default
postgres-password: default
resourceServerIssuer: default
sde_bpndiscovery-hostname: default
sde_connector-discovery-clientId: default
sde_connector-discovery-clientSecret: default
sde_connector-discovery-token-url: default
sde_digital-twins-authentication-url: default
sde_digital-twins-hostname: default
sde_discovery-authentication-url: default
sde_discovery-clientId: default
sde_discovery-clientSecret: default
sde_discovery-grantType: default
sde_dtregistry-url-prefix: default
sde_dtregistryidp-client-id: default
sde_dtregistrytenant-id: default
sde_keycloak-auth: default
sde_keycloak-realm: default
sde_keycloak-tokenUrl: default
sde_partner-pool-clientId: default
sde_partner-pool-clientSecret: default
sde_partner-pool-hostname: default
sde_portal-backend-authentication-url: default
sde_portal-backend-clientId: default
sde_portal-backend-clientSecret: default
sde_portal-backend-hostname: default
sde_resource-server-issuer: default
smtp_auth: "true"
smtp_host: default
smtp_port: default
smtp_tls_enable: "true"
targetCluster: default
targetNamesapce: default
vaultToken: default
vaultUrl: default

9 changes: 5 additions & 4 deletions charts/orchestrator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,18 +113,19 @@ readinessProbe:
successThreshold: 1
timeoutSeconds: 1

secretRef: ""
secretRef: "managed-service-orchestrator"

postgresql:
# -- Enable the dependency postgres database
enabled: true
fullnameOverride: postgresql
metrics:
containerSecurityContext:
enabled: false
auth:
username: ""
database: ""
existingSecret: ""
existingSecret: "managed-service-orchestrator"
secretKeys:
adminPasswordKey: ""
userPasswordKey: ""
adminPasswordKey: "dbpassword"
userPasswordKey: "dbpassword"

0 comments on commit 8a4dd35

Please sign in to comment.