-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into joe/awsebscsiprovisioner
- Loading branch information
Showing
2 changed files
with
20 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ maintainers: | |
- name: alejandroEsc | ||
- name: jimmidyson | ||
name: kommander | ||
version: 0.4.26 | ||
version: 0.4.27 |
113 changes: 19 additions & 94 deletions
113
stable/kommander/templates/grafana/hooks-home-dashboard.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,116 +1,41 @@ | ||
{{- if .Values.grafana.enabled }} | ||
--- | ||
# Unable to get post-install job hook working, which is why | ||
# this is a regular Job. The retries in the configmap script | ||
# should ensure that this successfully runs once the Grafana | ||
# server is up. | ||
apiVersion: batch/v1 | ||
kind: Job | ||
metadata: | ||
name: {{ .Values.grafana.hooks.jobName | quote }} | ||
namespace: {{ .Release.Namespace }} | ||
labels: | ||
{{ include "kommander.labels" . | indent 4 }} | ||
spec: | ||
template: | ||
metadata: | ||
name: {{ .Values.grafana.hooks.jobName | quote }} | ||
spec: | ||
restartPolicy: Never | ||
containers: | ||
- name: {{ .Values.grafana.hooks.jobName | quote }} | ||
image: {{ .Values.grafana.hooks.image | quote }} | ||
command: ["/bin/sh", "-c", "/job/run.sh"] | ||
env: | ||
- name: X_FORWARDED_USER | ||
valueFrom: | ||
secretKeyRef: | ||
name: {{ .Values.grafana.hooks.secretKeyRef }} | ||
key: username | ||
volumeMounts: | ||
- mountPath: /job | ||
name: job | ||
volumes: | ||
- name: job | ||
configMap: | ||
name: {{ .Values.grafana.hooks.jobName }} | ||
defaultMode: 0777 | ||
--- | ||
apiVersion: batch/v1 | ||
kind: Job | ||
metadata: | ||
name: {{ .Values.grafana.hooks.jobName }}-upgrade-hook | ||
name: {{ .Values.grafana.hooks.jobName }} | ||
namespace: {{ .Release.Namespace }} | ||
labels: | ||
{{ include "kommander.labels" . | indent 4 }} | ||
annotations: | ||
helm.sh/hook: post-upgrade | ||
helm.sh/hook-weight: "-4" | ||
helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded | ||
"helm.sh/hook": post-install,post-upgrade | ||
"helm.sh/hook-weight": "5" | ||
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded | ||
spec: | ||
template: | ||
metadata: | ||
name: {{ .Values.grafana.hooks.jobName }}-upgrade-hook | ||
name: {{ .Values.grafana.hooks.jobName }} | ||
spec: | ||
restartPolicy: OnFailure | ||
containers: | ||
- name: {{ .Values.grafana.hooks.jobName }}-upgrade-hook | ||
- name: {{ .Values.grafana.hooks.jobName }} | ||
image: {{ .Values.grafana.hooks.image | quote }} | ||
command: ["/bin/sh", "-c", "/job/run.sh"] | ||
env: | ||
- name: X_FORWARDED_USER | ||
valueFrom: | ||
secretKeyRef: | ||
name: {{ .Values.grafana.hooks.secretKeyRef }} | ||
key: username | ||
volumeMounts: | ||
- mountPath: /job | ||
name: job | ||
volumes: | ||
- name: job | ||
configMap: | ||
name: {{ .Values.grafana.hooks.jobName }} | ||
defaultMode: 0777 | ||
--- | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: {{ .Values.grafana.hooks.jobName }} | ||
data: | ||
run.sh: |- | ||
#!/bin/bash | ||
set -o nounset | ||
set -o errexit | ||
set -o pipefail | ||
CURL="curl --verbose --fail --max-time 30 --retry 20 --retry-connrefused" | ||
DASHBOARD_ID=$($CURL -H "X-Forwarded-User: $X_FORWARDED_USER" {{ .Values.grafana.hooks.serviceURL }}/api/search/?query={{ .Values.grafana.hooks.dashboardName | urlquery }} | jq '.[0].id') | ||
echo "setting home dashboard to ID" $DASHBOARD_ID | ||
$CURL -X PUT -H "Content-Type: application/json" -H "X-Forwarded-User: $X_FORWARDED_USER" -d '{"homeDashboardId":'"$DASHBOARD_ID"'}' {{ .Values.grafana.hooks.serviceURL }}/api/org/preferences | ||
--- | ||
apiVersion: batch/v1 | ||
kind: Job | ||
metadata: | ||
name: cleanup-{{ .Values.grafana.hooks.jobName }} | ||
namespace: {{ .Release.Namespace }} | ||
labels: | ||
{{ include "kommander.labels" . | indent 4 }} | ||
annotations: | ||
"helm.sh/hook": pre-delete | ||
"helm.sh/hook-weight": "5" | ||
"helm.sh/hook-delete-policy": hook-succeeded | ||
spec: | ||
template: | ||
metadata: | ||
name: cleanup-{{ .Values.grafana.hooks.jobName }} | ||
spec: | ||
serviceAccountName: {{ .Values.grafana.hooks.kommanderServiceAccount }} | ||
containers: | ||
- name: kubectl | ||
image: bitnami/kubectl:1.16.2 | ||
imagePullPolicy: IfNotPresent | ||
command: | ||
- /bin/sh | ||
- -c | ||
- kubectl delete configmap {{ .Values.grafana.hooks.jobName }} --namespace={{ .Release.Namespace }} | ||
restartPolicy: OnFailure | ||
command: | ||
- sh | ||
- "-c" | ||
- | | ||
/bin/bash <<'EOF' | ||
set -o nounset | ||
set -o errexit | ||
set -o pipefail | ||
CURL="curl --verbose --fail --max-time 30 --retry 20 --retry-connrefused" | ||
DASHBOARD_ID=$($CURL -H "X-Forwarded-User: $X_FORWARDED_USER" {{ .Values.grafana.hooks.serviceURL }}/api/search/?query={{ .Values.grafana.hooks.dashboardName | urlquery }} | jq '.[0].id') | ||
echo "setting home dashboard to ID" $DASHBOARD_ID | ||
$CURL -X PUT -H "Content-Type: application/json" -H "X-Forwarded-User: $X_FORWARDED_USER" -d '{"homeDashboardId":'"$DASHBOARD_ID"'}' {{ .Values.grafana.hooks.serviceURL }}/api/org/preferences | ||
EOF | ||
{{- end }} |