X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=ocd%2Finfra%2Fplaybooks%2Froles%2Fprometheus%2Ftasks%2Finstall.yml;h=f8472b433de74cdb8374aaafa6b20c2717031ad0;hb=7d2bf0bf6892cb363e61156577e66d0e655a21e3;hp=be458fd5f0f34d00a5deaf885b412d72e590d21c;hpb=97c655ebd49ec7ff289af583750056576c6e338e;p=ealt-edge.git diff --git a/ocd/infra/playbooks/roles/prometheus/tasks/install.yml b/ocd/infra/playbooks/roles/prometheus/tasks/install.yml index be458fd..f8472b4 100644 --- a/ocd/infra/playbooks/roles/prometheus/tasks/install.yml +++ b/ocd/infra/playbooks/roles/prometheus/tasks/install.yml @@ -30,18 +30,18 @@ # yamllint disable rule:line-length when: result.stdout == "" -- name: Install prometheus on x86_64 +- name: "INSTALL: Install prometheus on x86_64" shell: cmd: helm install mep-prometheus stable/prometheus --version v9.3.1 when: result is failed and ansible_architecture == 'x86_64' -- name: copy values.yaml to host +- name: "INSTALL: copy values.yaml to host" copy: src: values.yaml dest: /tmp/prometheus/ when: result is failed and ansible_architecture == 'aarch64' -- name: Install prometheus on aarch64 +- name: "INSTALL: Install prometheus on aarch64" shell: cmd: 'helm install mep-prometheus stable/prometheus -f /tmp/prometheus/values.yaml --version v9.3.1'