Skip to content

Commit

Permalink
fix(kubermatic-operator): add required static data (#54)
Browse files Browse the repository at this point in the history
* fix(kubermatic-operator): add required static data

* fix(kubermatic-operator): bump chart version
  • Loading branch information
oliverbaehler authored Mar 31, 2024
1 parent 1a297e2 commit 9f04ec2
Show file tree
Hide file tree
Showing 6 changed files with 3,374 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/kubermatic-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.
apiVersion: v1
name: kubermatic-operator
version: v2.24.5
version: 2.24.5
appVersion: v2.24.5
description: Helm chart to install the Kubermatic Operator
keywords:
Expand Down
3,347 changes: 3,347 additions & 0 deletions charts/kubermatic-operator/static/ca-bundle.pem

Large diffs are not rendered by default.

23 changes: 23 additions & 0 deletions charts/kubermatic-operator/templates/ca-bundle.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Copyright 2020 The Kubermatic Kubernetes Platform contributors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
apiVersion: v1
kind: ConfigMap
metadata:
name: ca-bundle
labels:
{{- include "helm.labels" . | nindent 4 }}
namespace: {{ .Release.Namespace }}
data:
ca-bundle.pem: |
{{ .Files.Get "static/ca-bundle.pem" | indent 4 }}
1 change: 1 addition & 0 deletions charts/kubermatic-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ metadata:
name: {{ include "helm.fullname" . }}
labels:
{{- include "helm.labels" . | nindent 4 }}
namespace: {{ .Release.Namespace }}
spec:
replicas: {{ .Values.kubermaticOperator.replicaCount }}
strategy:
Expand Down
1 change: 1 addition & 0 deletions charts/kubermatic-operator/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ metadata:
name: {{ include "helm.fullname" . }}-metrics
labels:
{{- include "helm.labels" . | nindent 4 }}
namespace: {{ .Release.Namespace }}
spec:
type: ClusterIP
ports:
Expand Down
1 change: 1 addition & 0 deletions charts/kubermatic-operator/templates/serviceaccount.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ metadata:
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
namespace: {{ .Release.Namespace }}
{{- end }}

0 comments on commit 9f04ec2

Please sign in to comment.