Skip to content

Commit

Permalink
Fix ct lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
bells17 committed Sep 23, 2021
1 parent 69a4b24 commit 3a8c36c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion charts/accurate/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0
version: 0.1.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
8 changes: 4 additions & 4 deletions charts/accurate/templates/generated/generated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,8 @@ apiVersion: admissionregistration.k8s.io/v1
kind: MutatingWebhookConfiguration
metadata:
annotations:
cert-manager.io/inject-ca-from: '{{ .Release.Namespace }}/{{ template "accurate.fullname"
. }}-serving-cert'
cert-manager.io/inject-ca-from: |
'{{ .Release.Namespace }}/{{ template "accurate.fullname" . }}-serving-cert'
labels:
app.kubernetes.io/managed-by: '{{ .Release.Service }}'
app.kubernetes.io/name: '{{ include "accurate.name" . }}'
Expand Down Expand Up @@ -270,8 +270,8 @@ apiVersion: admissionregistration.k8s.io/v1
kind: ValidatingWebhookConfiguration
metadata:
annotations:
cert-manager.io/inject-ca-from: '{{ .Release.Namespace }}/{{ template "accurate.fullname"
. }}-serving-cert'
cert-manager.io/inject-ca-from: |
'{{ .Release.Namespace }}/{{ template "accurate.fullname" . }}-serving-cert'
labels:
app.kubernetes.io/managed-by: '{{ .Release.Service }}'
app.kubernetes.io/name: '{{ include "accurate.name" . }}'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ kind: MutatingWebhookConfiguration
metadata:
name: mutating-webhook-configuration
annotations:
cert-manager.io/inject-ca-from: '{{ .Release.Namespace }}/{{ template "accurate.fullname" . }}-serving-cert'
cert-manager.io/inject-ca-from: |
'{{ .Release.Namespace }}/{{ template "accurate.fullname" . }}-serving-cert'
---
apiVersion: admissionregistration.k8s.io/v1
kind: ValidatingWebhookConfiguration
metadata:
name: validating-webhook-configuration
annotations:
cert-manager.io/inject-ca-from: '{{ .Release.Namespace }}/{{ template "accurate.fullname" . }}-serving-cert'
cert-manager.io/inject-ca-from: |
'{{ .Release.Namespace }}/{{ template "accurate.fullname" . }}-serving-cert'

0 comments on commit 3a8c36c

Please sign in to comment.