Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions manifests/03_cm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ metadata:
include.release.openshift.io/ibm-cloud-managed: "true"
include.release.openshift.io/self-managed-high-availability: "true"
include.release.openshift.io/single-node-developer: "true"
config.openshift.io/inject-tls: "true"
data:
operator-config.yaml: |
apiVersion: operator.openshift.io/v1alpha1
Expand Down
3 changes: 3 additions & 0 deletions manifests/05_deploy-ibm-cloud-managed.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ spec:
containers:
- args:
- --config=/var/run/configmaps/config/operator-config.yaml
- --terminate-on-files=/var/run/configmaps/config/operator-config.yaml
- --terminate-on-files=/var/run/secrets/serving-cert/tls.crt

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's up with these certs ? Are we fixing a bug in here as well ?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consistency with other operators. Yet, I can drop it.

- --terminate-on-files=/var/run/secrets/serving-cert/tls.key
- -v=2
command:
- service-ca-operator
Expand Down
3 changes: 3 additions & 0 deletions manifests/05_deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ spec:
command: ["service-ca-operator", "operator"]
args:
- "--config=/var/run/configmaps/config/operator-config.yaml"
- "--terminate-on-files=/var/run/configmaps/config/operator-config.yaml"
- "--terminate-on-files=/var/run/secrets/serving-cert/tls.crt"
- "--terminate-on-files=/var/run/secrets/serving-cert/tls.key"
- "-v=2"
resources:
requests:
Expand Down