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

NVSHAS-8212: let controller manage jwt certificate(cont.) #311

Closed
wants to merge 1 commit into from
Closed
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
3 changes: 0 additions & 3 deletions charts/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,6 @@ Parameter | Description | Default | Notes
`controller.certificate.secret` | Replace controller REST API certificate using secret if secret name is specified | `nil` |
`controller.certificate.keyFile` | Replace controller REST API certificate key file | `tls.key` |
`controller.certificate.pemFile` | Replace controller REST API certificate pem file | `tls.pem` |
`controller.jwtCertificate.secret` | Replace controller JWT signing key using secret if secret name is specified | `nil` |
`controller.jwtCertificate.keyFile` | Replace controller JWT signing key file | `tls.key` |
`controller.jwtCertificate.pemFile` | Replace controller JWT signing pem file | `tls.pem` |
`controller.federation.mastersvc.type` | Multi-cluster primary cluster service type. If specified, the deployment will be used to manage other clusters. Possible values include NodePort, LoadBalancer and ClusterIP. | `nil` |
`controller.federation.mastersvc.annotations` | Add annotations to Multi-cluster primary cluster REST API service | `{}` |
`controller.federation.mastersvc.route.enabled` | If true, create a OpenShift route to expose the Multi-cluster primary cluster service | `false` |
Expand Down
5 changes: 0 additions & 5 deletions charts/core/templates/controller-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -261,11 +261,6 @@ spec:
secret:
secretName: {{ .Values.controller.certificate.secret }}
{{- end }}
{{- if .Values.controller.jwtCertificate.secret }}
- name: userjwtcert
secret:
secretName: {{ .Values.controller.jwtCertificate.secret }}
{{- end }}
{{- if .Values.internal.certmanager.enabled }}
- name: internal-cert
secret:
Expand Down
4 changes: 0 additions & 4 deletions charts/core/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,10 +145,6 @@ controller:
secret:
keyFile: tls.key
pemFile: tls.pem
jwtCertificate:
secret:
keyFile: tls.key
pemFile: tls.pem
internal: # this is used for internal communication. Please use the SAME CA for all the components (controller, scanner, adapter and enforcer)
certificate:
secret: neuvector-internal
Expand Down
Loading