Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement mounting user certificates and keys #125

Merged
merged 13 commits into from
Apr 11, 2024
Prev Previous commit
Next Next commit
update crd in helm chart
  • Loading branch information
Kirill-Garbar committed Apr 9, 2024
commit c80175a64365d377acd146144c1a00ee20d1c553
35 changes: 35 additions & 0 deletions charts/etcd-operator/crds/etcd-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4318,6 +4318,41 @@ spec:
format: int32
minimum: 0
type: integer
security:
description: Security describes security settings of etcd (authentication, certificates, rbac)
properties:
clientServer:
properties:
ca:
properties:
secretName:
type: string
type: object
rootClientCert:
properties:
secretName:
type: string
type: object
serverCert:
properties:
secretName:
type: string
type: object
type: object
peer:
properties:
ca:
properties:
secretName:
type: string
type: object
cert:
properties:
secretName:
type: string
type: object
type: object
type: object
storage:
description: |-
StorageSpec defines the configured storage for a etcd members.
Expand Down