Skip to content

Commit

Permalink
CRD update
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Hunziker committed Jun 4, 2024
1 parent a23f5f5 commit e65fc95
Showing 1 changed file with 29 additions and 14 deletions.
43 changes: 29 additions & 14 deletions operator/crd/crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,22 +89,37 @@ spec:
- claimName
- mountPath
tls:
description: "Configure client TLS connections using a JKS or PKCS12 truststore. A JKS truststore should have its password set to 'changeit', while a PKCS12 truststore should have an empty password."
description: "Configure server and client TLS connections."
type: object
properties:
configMapName:
type: string
key:
type: string
type:
type: string
enum:
- jks
- pkcs12
required:
- configMapName
- key
- type
clientConfig:
description: "Configure client TLS connections using a JKS or PKCS12 truststore. A JKS truststore should have its password set to 'changeit', while a PKCS12 truststore should have an empty password."
type: object
properties:
configMapName:
type: string
key:
type: string
type:
type: string
enum:
- jks
- pkcs12
required:
- configMapName
- key
- type
serverConfig:
description: "Configure server TLS connections using a JKS keystore. The keystore password should be stored in a secret and referenced in the route XML as a secretSource. The format of the secret should be `server.ssl.key-password=password`."
type: object
properties:
secretName:
type: string
key:
type: string
required:
- configMapName
- key
required:
- routeConfigMap
required:
Expand Down

0 comments on commit e65fc95

Please sign in to comment.