bigchaindb/k8s/nginx-3scale/nginx-3scale-secret.yaml
Krish 28042a7e83 Add NGINX integration with 3scale on Kubernetes (#1392)
* Add NGINX integration with 3scale on Kubernetes
2017-04-13 17:34:25 +02:00

14 lines
393 B
YAML

# Certificate data should be base64 encoded before embedding them here by using
# `cat cert.pem | base64 -w 0 > cert.pem.b64` and then copy the resulting
# value here. Same goes for cert.key.
# Ref: https://kubernetes.io/docs/concepts/configuration/secret/
apiVersion: v1
kind: Secret
metadata:
name: certs
type: Opaque
data:
cert.pem: <certificate data here>
cert.key: <key data here>