Skip to content

Commit

Permalink
Merge pull request #1 from catenax-ng/main
Browse files Browse the repository at this point in the history
CPLP-1420: Fix for missing apiVersion in v0.6.0
  • Loading branch information
evegufy authored Dec 12, 2022
2 parents 76ad8e2 + 81b3166 commit 3121a81
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 67 deletions.
19 changes: 0 additions & 19 deletions charts/portal/templates/ingress-backend.yaml
Original file line number Diff line number Diff line change
@@ -1,22 +1,3 @@
###############################################################
# Copyright (c) 2021,2022 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
###############################################################

{{- if .Values.backend.ingress.enabled -}}
{{- $fullName := .Values.backend.ingress.name -}}
{{- $svcPort := .Values.portService -}}
Expand Down
19 changes: 0 additions & 19 deletions charts/portal/templates/ingress-frontend.yaml
Original file line number Diff line number Diff line change
@@ -1,22 +1,3 @@
###############################################################
# Copyright (c) 2021,2022 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
###############################################################

{{- if .Values.frontend.ingress.enabled -}}
{{- $fullName := .Values.name -}}
{{- $svcPort := .Values.portService -}}
Expand Down
29 changes: 0 additions & 29 deletions charts/portal/templates/secret-backend--postgres-init-db-user.yaml

This file was deleted.

10 changes: 10 additions & 0 deletions charts/portal/templates/secret-backend-postgres-init-db-user.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{{- if .Values.postgresql.secret.initUserDbSql -}}
apiVersion: v1
kind: Secret
metadata:
name: secret-postgres-init-db-user
namespace: {{ .Release.Namespace }}
type: Opaque
data:
01-init-user-db.sql: {{ .Values.postgresql.secret.initUserDbSql }}
{{- end -}}

0 comments on commit 3121a81

Please sign in to comment.