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

Feat/con 28906 metric exporter standalone installation #155

Merged
merged 6 commits into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from 5 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
2 changes: 1 addition & 1 deletion charts/ocean-metric-exporter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: ocean-metric-exporter
description: A Helm chart for Ocean Metric Exporter
type: application
version: 1.0.10
version: 1.1.0
appVersion: 1.0.4
home: https://github.com/spotinst/charts/tree/main/charts/ocean-metric-exporter
icon: https://docs.spot.io/_media/images/spot_mark.png
Expand Down
108 changes: 101 additions & 7 deletions charts/ocean-metric-exporter/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,73 @@ Create chart name and version as used by the chart label.
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
{{- end }}

{{/*
Namespace.

Precedence is:
1. --set oceanController.namespace
2. --namespace
3. if none of the above is specified, default is "kube-system" for backwards compatibility.
*/}}
{{- define "ocean-metric-exporter.namespace" -}}
{{- if .Values.oceanController.namespace -}}
{{ .Values.oceanController.namespace }}
{{- else -}}
{{- if eq .Release.Namespace "default" -}}
kube-system
{{- else -}}
{{ .Release.Namespace }}
{{- end }}
{{- end }}
{{- end }}

{{/*
Create Secret.
*/}}
{{- define "ocean-metric-exporter.createSecret" -}}
{{- if and .Values.spotinst (or .Values.spotinst.token .Values.spotinst.account) -}}
{{- include "ocean-metric-exporter.standaloneParamCheck" . -}}
{{- true -}}
{{- end -}}
{{- end -}}

{{/*
Create ConfigMap.
*/}}
{{- define "ocean-metric-exporter.createConfigMap" -}}
{{- if and .Values.spotinst .Values.spotinst.clusterIdentifier -}}
{{- include "ocean-metric-exporter.standaloneParamCheck" . -}}
{{- true -}}
{{- end -}}
{{- end -}}

{{/*
Standalone parameter checks
*/}}
{{- define "ocean-metric-exporter.standaloneParamCheck" -}}
{{- if not .Values.spotinst.account -}}
{{- fail "Standalone installation detected (either 'spotinst.clusterIdentifier' or 'spotinst.token' specified), but 'spotinst.account' was not specified" -}}
{{- end -}}
{{- if not .Values.spotinst.token -}}
{{- fail "Standalone installation detected (either 'spotinst.clusterIdentifier' or 'spotinst.account' specified), but 'spotinst.token' was not specified" -}}
{{- end -}}
{{- if not .Values.spotinst.clusterIdentifier -}}
{{- fail "Standalone installation detected (either 'spotinst.token' or 'spotinst.account' specified), but 'spotinst.clusterIdentifier' was not specified" -}}
{{- end -}}
{{- if .Values.oceanController.namespace -}}
{{- fail (printf "Value 'oceanController.namespace' is not allowed in standalone installation mode ('spotinst.*' values used). Use '--namespace=%s' instead" .Values.oceanController.namespace) -}}
{{- end -}}
{{- if .Values.oceanController.secretName -}}
{{- fail (printf "Value 'oceanController.secretName' is not allowed in standalone installation mode ('spotinst.*' values used). Use '--set secretName=%s' instead" .Values.oceanController.secretName) -}}
{{- end -}}
{{- if .Values.oceanController.configMapName -}}
{{- fail (printf "Value 'oceanController.configMapName' is not allowed in standalone installation mode ('spotinst.*' values used). Use '--set configMapName=%s' instead" .Values.oceanController.configMapName) -}}
{{- end -}}
{{- if .Values.oceanController.caBundleSecretName -}}
{{- fail (printf "Value 'oceanController.caBundleSecretName' is not allowed in standalone installation mode ('spotinst.*' values used). Use '--set caBundleSecret.name=%s' instead" .Values.oceanController.caBundleSecretName) -}}
{{- end -}}
{{- end -}}

{{/*
Common labels.
*/}}
Expand All @@ -58,28 +125,55 @@ app.kubernetes.io/instance: {{ .Release.Name }}
Secret name.
*/}}
{{- define "ocean-metric-exporter.secretName" -}}
{{ default (include "ocean-metric-exporter.name" .) .Values.oceanController.secretName }}
{{- if (include "ocean-metric-exporter.createSecret" .) -}}
{{ default (include "ocean-metric-exporter.name" .) .Values.secretName }}
{{- else -}}
{{ default "spotinst-kubernetes-cluster-controller" .Values.oceanController.secretName }}
{{- end }}
{{- end }}

{{/*
ConfigMap name.
*/}}
{{- define "ocean-metric-exporter.configMapName" -}}
{{ default (include "ocean-metric-exporter.name" .) .Values.oceanController.configMapName }}
{{- if (include "ocean-metric-exporter.createConfigMap" .) -}}
{{ default (include "ocean-metric-exporter.name" .) .Values.configMapName }}
{{- else -}}
{{ default "spotinst-kubernetes-cluster-controller-config" .Values.oceanController.configMapName }}
{{- end }}
{{- end }}

{{/*
Check CA bundle secret conflict
*/}}
{{- define "ocean-metric-exporter.checkCaBundleSecretConflict" -}}
{{- if .Values.oceanController.caBundleSecretName -}}
{{- fail "Value 'oceanController.caBundleSecretName' should not be used when 'caBundleSecret.create=true'" -}}
{{- end -}}
{{- end -}}

{{/*
CA bundle secret name.
*/}}
{{- define "ocean-metric-exporter.caBundleSecretName" -}}
{{ default (include "ocean-metric-exporter.name" .) .Values.oceanController.caBundleSecretName }}
{{- if and .Values.caBundleSecret .Values.caBundleSecret.create -}}
{{- include "ocean-metric-exporter.checkCaBundleSecretConflict" . -}}
{{ default (printf "%s-ca-bundle" (include "ocean-metric-exporter.name" .)) .Values.caBundleSecret.name }}
{{- else -}}
{{ default "spotinst-kubernetes-cluster-controller-ca-bundle" .Values.oceanController.caBundleSecretName }}
{{- end }}
{{- end }}

{{/*
Namespace.
CA bundle secret key.
*/}}
{{- define "ocean-metric-exporter.namespace" -}}
{{ default (include "ocean-metric-exporter.name" .) .Values.oceanController.namespace }}
{{- define "ocean-metric-exporter.caBundleSecretKey" -}}
{{- if and .Values.caBundleSecret .Values.caBundleSecret.create -}}
{{- include "ocean-metric-exporter.checkCaBundleSecretConflict" . -}}
{{ default "userEnvCertificates.pem" .Values.caBundleSecret.key }}
{{- else -}}
userEnvCertificates.pem
{{- end }}
{{- end }}

{{/*
Expand Down Expand Up @@ -107,7 +201,7 @@ Container command.
probes.
*/}}
{{- define "ocean-metric-exporter.probes" -}}
{{- if or .Values.probes.liveness.enabled .Values.probes.enabled }}
{{- if or .Values.probes.liveness.enabled .Values.probes.enabled -}}
livenessProbe:
httpGet:
path: /health/liveness
Expand Down
12 changes: 12 additions & 0 deletions charts/ocean-metric-exporter/templates/caBundle.secret.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{{- if and .Values.caBundleSecret .Values.caBundleSecret.create }}
apiVersion: v1
kind: Secret
metadata:
name: {{ include "ocean-metric-exporter.caBundleSecretName" . }}
namespace: {{ include "ocean-metric-exporter.namespace" . }}
labels:
{{- include "ocean-metric-exporter.labels" . | nindent 4 }}
type: Opaque
data:
{{- include "ocean-metric-exporter.caBundleSecretKey" . | nindent 2 -}}: {{ required "`caBundleSecret.data` must be specified if `caBundleSecret.create` is `true`" .Values.caBundleSecret.data | b64enc }}
{{- end }}
9 changes: 9 additions & 0 deletions charts/ocean-metric-exporter/templates/configmap.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{{ if include "ocean-metric-exporter.createConfigMap" . }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "ocean-metric-exporter.configMapName" . }}
namespace: {{ include "ocean-metric-exporter.namespace" . }}
data:
spotinst.cluster-identifier: "{{ .Values.spotinst.clusterIdentifier }}"
{{- end }}
6 changes: 2 additions & 4 deletions charts/ocean-metric-exporter/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ spec:
secretKeyRef:
name: {{ include "ocean-metric-exporter.secretName" . }}
key: token
optional: true
- name: SPOTINST_TOKEN_LEGACY
valueFrom:
configMapKeyRef:
Expand All @@ -46,7 +45,6 @@ spec:
secretKeyRef:
name: {{ include "ocean-metric-exporter.secretName" . }}
key: account
optional: true
- name: SPOTINST_ACCOUNT_LEGACY
valueFrom:
configMapKeyRef:
Expand Down Expand Up @@ -74,7 +72,7 @@ spec:
valueFrom:
secretKeyRef:
name: {{ include "ocean-metric-exporter.caBundleSecretName" . }}
key: userEnvCertificates.pem
key: {{ .Values.caBundleSecret.key }}
optional: true
{{- with .Values.podEnvVariables }}
{{- toYaml . | nindent 8 }}
Expand All @@ -89,7 +87,7 @@ spec:
- --allow-labels={{ join "," .Values.metricsConfiguration.allowLabels }}
- --deny-labels={{ join "," .Values.metricsConfiguration.denyLabels }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- toYaml .Values.resources | nindent 12 -}}
{{- include "ocean-metric-exporter.probes" . | nindent 8 }}
{{- with .Values.nodeSelector }}
nodeSelector:
Expand Down
11 changes: 11 additions & 0 deletions charts/ocean-metric-exporter/templates/secret.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{{ if include "ocean-metric-exporter.createSecret" . }}
apiVersion: v1
kind: Secret
metadata:
name: {{ include "ocean-metric-exporter.secretName" . }}
namespace: {{ include "ocean-metric-exporter.namespace" . }}
type: Opaque
data:
token: {{ .Values.spotinst.token | b64enc }}
account: {{ .Values.spotinst.account | b64enc }}
{{- end }}
53 changes: 45 additions & 8 deletions charts/ocean-metric-exporter/values.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,49 @@
# Spot Configuration.
# Will create secret and configMap objects.
spotinst:
# -- (Optional) Spot Token.
# Ref: https://docs.spot.io/administration/api/create-api-token
token: ""
# -- (Optional) Spot Account.
# Ref: https://docs.spot.io/administration/organizations?id=account
account: ""
# -- (Optional) Unique identifier used by the Ocean Controller to connect
# between the Ocean backend and the Kubernetes cluster.
# Ref: https://docs.spot.io/ocean/tutorials/spot-kubernetes-controller/
clusterIdentifier: ""

# -- (Optional) Secret name to use.
# In case spotinst.token, spotinst.account are provided, this overrides the name of the created secret.
secretName: ""

# -- (Optional) ConfigMap name to use.
# In case spotinst.clusterIdentifier is provided, this overrides the name of the created configMap.
configMapName: ""

# -- Reference secret and configMap for the Ocean Controller.
# Deprecated in favor of spotinst object or secretName and configMapName
oceanController:
# -- (Optional) Namespace where components should be installed.
namespace: kube-system
# -- (Optional) Secret name.
secretName: spotinst-kubernetes-cluster-controller
# -- (Optional) ConfigMap name.
configMapName: spotinst-kubernetes-cluster-controller-config
# -- (Optional) Secret name of CA bundle.
caBundleSecretName: spotinst-kubernetes-cluster-controller-ca-bundle
# -- (Optional) Namespace where components should be installed. Deprecated. Use: --namespace= instead.
namespace: ""
# -- (Optional) Secret name. Deprecated. Use: --set secretName= instead.
secretName: ""
# -- (Optional) ConfigMap name. Deprecated. Use: --set configMapName= instead.
configMapName: ""
# -- (Optional) Secret name of CA bundle. Deprecated. Use: --set caBundleSecret.name= instead.
caBundleSecretName: ""

# CA bundle.
# Ref: https://kubernetes.io/docs/concepts/configuration/secret/
caBundleSecret:
# -- Controls whether a CA bundle secret should be created.
create: false
# -- CA bundle Secret name. (Optional)
name: ""
# -- Key inside the secret to inject the CA bundle from
key: "userEnvCertificates.pem"
# -- Must contain the CA bundle data in case `caBundleSecret.create` is true.
# For example by using `--set caBundleSecret.data="$(cat ./ca.pem)"`
data: ""

# -- (Optional) Replicas.
# Ref: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#replicas
Expand Down
Loading