Skip to content

Commit

Permalink
Set type for tls secrets (#1616)
Browse files Browse the repository at this point in the history
* Set type for tls secrets

* Use `kubernetes.io/tls` type for TLS secrets.

---------

Co-authored-by: Quentin Bisson <[email protected]>
  • Loading branch information
whites11 and QuentinBisson authored May 13, 2024
1 parent 4841448 commit 7f844f6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Removed `apiserver_down` inhibition.

### Fixed

- Use `kubernetes.io/tls` type for TLS secrets.

## [4.74.0] - 2024-05-02

### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ metadata:
{{- include "labels.common" . | nindent 4 }}
name: alertmanager-tls
namespace: {{ include "resource.default.namespace" . }}
type: kubernetes.io/tls
data:
tls.crt: {{ .Values.certificate.monitoring.crtPem | quote }}
tls.key: {{ .Values.certificate.monitoring.keyPem | quote }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ metadata:
{{- include "labels.common" . | nindent 4 }}
name: prometheus-tls
namespace: {{ include "resource.default.namespace" . }}
type: kubernetes.io/tls
data:
tls.crt: {{ .Values.certificate.monitoring.crtPem | quote }}
tls.key: {{ .Values.certificate.monitoring.keyPem | quote }}
Expand Down

0 comments on commit 7f844f6

Please sign in to comment.