forked from openstack-k8s-operators/placement-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[tlse] tls for PlacementAPI pod configuration
Public/Internal service cert secrets and the CA bundle secret can be passed to configure httpd virtual hosts for tls termination. The certs are mounted to in var/lib/config-data/tls/certs/%s.crt|key and a CA bundle to /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem. Server cert and key are intended to be moved by kolla to /etc/pki/tls/certs|private. Depends-On: openstack-k8s-operators/lib-common#428 Depends-On: openstack-k8s-operators/openstack-operator#625 Signed-off-by: Veronika Fisarova <[email protected]>
- Loading branch information
Showing
25 changed files
with
817 additions
and
34 deletions.
There are no files selected for viewing
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
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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
apiVersion: placement.openstack.org/v1beta1 | ||
kind: PlacementAPI | ||
metadata: | ||
name: placement | ||
spec: | ||
serviceUser: placement | ||
customServiceConfig: | | ||
[DEFAULT] | ||
debug = true | ||
databaseInstance: openstack | ||
databaseUser: placement | ||
debug: | ||
dbSync: false | ||
service: false | ||
preserveJobs: false | ||
replicas: 1 | ||
secret: placement-secret | ||
tls: | ||
api: | ||
internal: | ||
secretName: cert-internal-svc | ||
public: | ||
secretName: cert-public-svc | ||
caBundleSecretName: combined-ca-bundle |
Oops, something went wrong.