k8-manifests/util/certificates.yaml (35 lines of code) (raw):
# Copyright 2022 Google LLC
#
# 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.
# Certificate to be created in the main cluster under the release namespace
# specific to the MySQL DB based deployment of the application
apiVersion: networking.gke.io/v1
kind: ManagedCertificate
metadata:
name: pos-certificate
namespace: release-db
spec:
domains:
- point-of-sale.retail.cymbal.dev
---
# Certificate to be created in the main cluster under the release namespace
# specific to the H2 Embedded DB based deployment of the application
apiVersion: networking.gke.io/v1
kind: ManagedCertificate
metadata:
name: pos-certificate
namespace: release-inmemory
spec:
domains:
- im.point-of-sale.retail.cymbal.dev
---
# Certificate to be created in the main cluster under the staging namespace
# specific to the MySQL DB based deployment of the application
apiVersion: networking.gke.io/v1
kind: ManagedCertificate
metadata:
name: pos-certificate
namespace: staging-db
spec:
domains:
- staging.point-of-sale.retail.cymbal.dev
---
# Certificate to be created in the main cluster under the staging namespace
# specific to the H2 Embedded DB based deployment of the application
apiVersion: networking.gke.io/v1
kind: ManagedCertificate
metadata:
name: pos-certificate
namespace: staging-inmemory
spec:
domains:
- im.staging.point-of-sale.retail.cymbal.dev