This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: petclinic-backend | |
labels: | |
app: petclinic-backend | |
spec: | |
replicas: 1 | |
selector: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: k8ssandra.io/v1alpha1 | |
kind: K8ssandraCluster | |
metadata: | |
name: foo | |
spec: | |
auth: false | |
cassandra: | |
serverType: dse | |
serverVersion: 6.8.32 | |
resources: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.PHONY: setup | |
setup: | |
oc project tls-demo | |
echo "Login to the OpenShift console and install cass-operator and cert-manager operators either globally or within the tls-demo namespace" | |
.PHONY: setup-issuers | |
setup-issuers: | |
echo "Provisioning self signed certificate issuer and CA with cert-manager" | |
oc apply -f selfsigned.issuer.yaml | |
oc apply -f ca.certificate.yaml |
OlderNewer