Skip to content

Commit 4bed142

Browse files
committed
fix: add secure postgres db samples, fixes RHOAIENG-6712
1 parent 7818afb commit 4bed142

File tree

6 files changed

+62
-0
lines changed

6 files changed

+62
-0
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ make deploy
6464
* [PostgreSQL with Istio and TLS](config/samples/istio/postgres-tls) PostgreSQL database, Istio, and TLS Gateway endpoints
6565
* [Secure MySQL without Istio](config/samples/secure-db/mysql) plain Kubernetes model registry services with a sample SSL secured MySQL database
6666
* [Secure MySQL with Istio](config/samples/secure-db/mysql-tls) SSL secured MySQL database, Istio, and TLS Gateway
67+
* [Secure PostgreSQL without Istio](config/samples/secure-db/postgres) plain Kubernetes model registry services with a sample SSL secured PostgreSQL database
68+
* [Secure PostgreSQL with Istio](config/samples/secure-db/postgres-tls) SSL secured PostgreSQL database, Istio, and TLS Gateway
6769

6870
#### Istio Samples
6971
**WARNING:** Istio samples without TLS are only meant for testing and demos to avoid having to create TLS certificates. They should only be used in local development clusters.
@@ -152,6 +154,8 @@ kubectl apply -k config/samples/istio/mysql-tls
152154
kubectl apply -k config/samples/istio/postgres-tls
153155
kubectl apply -k config/samples/secure-db/mysql
154156
kubectl apply -k config/samples/secure-db/mysql-tls
157+
kubectl apply -k config/samples/secure-db/postgres
158+
kubectl apply -k config/samples/secure-db/postgres-tls
155159
```
156160

157161
This will create the appropriate database and model registry resources, which will be reconciled in the controller to create a model registry deployment with other Kubernetes, Istio, and Authorino resources as needed.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
apiVersion: kustomize.config.k8s.io/v1alpha1
2+
kind: Component
3+
## Append samples of your project ##
4+
5+
# MySQL tls args patch
6+
patches:
7+
- path: postgres-ssl-args.yaml
8+
target:
9+
group: apps
10+
version: v1
11+
kind: Deployment
12+
name: model-registry-db
13+
- path: secure_postgres_modelregistry.yaml
14+
15+
#+kubebuilder:scaffold:manifestskustomizesamples
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
- op: add
2+
path: /spec/template/spec/containers/0/args
3+
value:
4+
- -c
5+
- ssl_cert_file=/etc/server-cert/tls.crt
6+
- -c
7+
- ssl_key_file=/etc/server-cert/tls.key
8+
- -c
9+
- ssl_ca_file=/etc/server-cert/ca.crt
10+
- -c
11+
- ssl=on
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
apiVersion: modelregistry.opendatahub.io/v1alpha1
2+
kind: ModelRegistry
3+
metadata:
4+
name: modelregistry-sample
5+
spec:
6+
postgres:
7+
sslMode: verify-ca
8+
sslRootCertificateSecret:
9+
name: model-registry-db-credential
10+
key: ca.crt
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
apiVersion: kustomize.config.k8s.io/v1beta1
2+
kind: Kustomization
3+
## Append samples of your project ##
4+
resources:
5+
- ../../istio/postgres-tls
6+
7+
components:
8+
- ../components
9+
- ../components/postgres
10+
11+
#+kubebuilder:scaffold:manifestskustomizesamples
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
apiVersion: kustomize.config.k8s.io/v1beta1
2+
kind: Kustomization
3+
## Append samples of your project ##
4+
resources:
5+
- ../../postgres
6+
7+
components:
8+
- ../components
9+
- ../components/postgres
10+
11+
#+kubebuilder:scaffold:manifestskustomizesamples

0 commit comments

Comments
 (0)