Parcourir la source

deploy k8s job for applying hawkular-metrics schema

This is just a first pass to test whether I have the ansible stuff set
up correctly.

add template for job and support for upgrading

We cannot use oc apply because the job template has immutable fields.

add a comment

fix indentation

Only delete job if it is already installed

There are a couple minor changes based on PR review. First,
ignore_errors is no longer used with the job deletion. Secondly, a new
variable is registered for listing the jobs. The deletion tasks checks
the output of that variable to determine whether or not the job is
already installed.

clean up when conditional

fix quoting error
John Sanda il y a 7 ans
Parent
commit
d8fe6c56bf

+ 21 - 0
roles/openshift_metrics/tasks/install_hawkular_schema_job.yaml

@@ -0,0 +1,21 @@
+---
+- name: list installed jobs
+  command: >
+    {{ openshift_client_binary }} -n {{ openshift_metrics_project }} --config={{ mktemp.stdout }}/admin.kubeconfig
+    get jobs
+  register: jobs
+
+# We cannot use oc apply here because the Job template has immutable fields
+# on which oc apply will fail.
+- name: remove hawkular-metrics-schema job
+  command: >
+    {{ openshift_client_binary }} -n {{ openshift_metrics_project }} --config={{ mktemp.stdout }}/admin.kubeconfig
+    delete job hawkular-metrics-schema
+  register: delete_schema_job
+  when: "'hawkular-metrics-schema' in jobs.stdout"
+
+- name: generate hawkular-metrics schema job
+  template:
+    src: hawkular_metrics_schema_job.j2
+    dest: "{{ mktemp.stdout }}/templates/hawkular_metrics_schema_job.yaml"
+  changed_when: false

+ 1 - 0
roles/openshift_metrics/tasks/install_metrics.yaml

@@ -6,6 +6,7 @@
   with_items:
   with_items:
     - support
     - support
     - heapster
     - heapster
+    - hawkular_schema_job
     - hawkular
     - hawkular
     - cassandra
     - cassandra
   loop_control:
   loop_control:

+ 35 - 0
roles/openshift_metrics/templates/hawkular_metrics_schema_job.j2

@@ -0,0 +1,35 @@
+apiVersion: batch/v1
+kind: Job
+metadata:
+  name: hawkular-metrics-schema
+  labels:
+    metrics-infra: hawkular-metrics
+    name: hawkular-metrics-schema
+spec:
+  template:
+    spec:
+      version: v1
+      metadata:
+        labels:
+          metrics-infra: hawkular-metrics
+          #name: hawkular-metrics
+      containers:
+      - name: hawkular-metrics-schema
+        image: {{openshift_metrics_image_prefix}}metrics-hawkular-metrics-schema:{{openshift_metrics_image_version}}
+        imagePullPolicy: IfNotPresent
+        env:
+          - name: TRUSTSTORE_AUTHORITIES
+            value: "/hawkular-metrics-certs/tls.truststore.crt"
+        volumeMounts:
+        - mountPath: /hawkular-metrics-certs
+          name: hawkular-metrics-certs
+        - mountPath: /hawkular-account
+          name: hawkular-metrics-account
+      volumes:
+      - name: hawkular-metrics-certs
+        secret:
+          secretName: hawkular-metrics-certs
+      - name: hawkular-metrics-account
+        secret:
+          secretName: hawkular-metrics-account
+      restartPolicy: OnFailure