]
Steven Hawkins commented on TEIIDSB-142:
----------------------------------------
Yes, I'm saying that needs changed to reference the secret.
teiid-openshift-examples enhancements
-------------------------------------
Key: TEIIDSB-142
URL:
https://issues.jboss.org/browse/TEIIDSB-142
Project: Teiid Spring Boot
Issue Type: Enhancement
Components: examples
Reporter: Bilgin Ibryam
Priority: Optional
While setting up the example
[
scenarios|https://github.com/teiid/teiid-openshift-examples/blob/master/r...]
the Secret seems unnecessary? Is it really used?
# CREATE SECRET TO CONNECT TO DATABASE (ADJUST TO YOUR VALUES)
oc create -f - <<EOF
apiVersion: v1
kind: Secret
metadata:
name: postgresql
type: Opaque
stringData:
database-user: user
database-name: sampledb
database-password: mypassword
EOF
Also the following steps can be shortened:
oc get pods
oc rsh postgres-xxxxx
to
oc rsh $(oc get pods -o name -l app=postgresql)