Update tls overrides

Updated tls overrides for proper gate functionality.

Change-Id: I59d9e0425b41a5121fc0a6d0d75b7f6e3d54bec6
This commit is contained in:
Ritchie, Frank (fr801x) 2021-04-13 16:02:38 -04:00 committed by Frank Ritchie
parent c60c138777
commit 207da4426a
3 changed files with 27 additions and 3 deletions

View File

@ -15,6 +15,6 @@ apiVersion: v1
appVersion: v1.0.0
description: OpenStack-Helm Ceph RadosGW
name: ceph-rgw
version: 0.1.5
version: 0.1.6
home: https://github.com/ceph/ceph
...

View File

@ -1,22 +1,45 @@
---
endpoints:
object_store:
scheme:
default: https
host_fqdn_override:
default:
tls:
secretName: ceph-rgw-ks-tls-api
issuerRef:
name: ca-clusterissuer
name: ca-issuer
kind: ClusterIssuer
ceph_object_store:
scheme:
default: https
host_fqdn_override:
default:
tls:
secretName: ceph-rgw-s3-tls-api
issuerRef:
name: ca-clusterissuer
name: ca-issuer
kind: ClusterIssuer
network:
api:
ingress:
public: true
classes:
namespace: "nginx"
cluster: "nginx-cluster"
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
nginx.ingress.kubernetes.io/proxy-body-size: "0"
nginx.ingress.kubernetes.io/proxy-max-temp-file-size: "0"
nginx.ingress.kubernetes.io/backend-protocol: "HTTPS"
external_policy_local: false
node_port:
enabled: false
port: 30004
public: 192.168.0.0/16
cluster: 192.168.0.0/16
manifests:
certificates: true
...

View File

@ -6,4 +6,5 @@ ceph-rgw:
- 0.1.3 update rbac api version
- 0.1.4 Rgw placement target support
- 0.1.5 Add tls support
- 0.1.6 Update tls override options
...