Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Constantin07/test
Browse files Browse the repository at this point in the history
  • Loading branch information
Constantin07 committed Jul 25, 2023
2 parents ed876a1 + c1e8445 commit 515628c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions .yamllint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,21 @@ extends: default
rules:
indentation:
spaces: 2
braces:
min-spaces-inside: 0
max-spaces-inside: 1
brackets:
min-spaces-inside: 0
max-spaces-inside: 1
comments:
min-spaces-from-content: 1
document-start:
present: true
document-end:
present: false
line-length: disable
new-lines:
type: unix
quoted-strings:
quote-type: double
required: only-when-needed
2 changes: 1 addition & 1 deletion ansible/roles/helmfile/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---

helmfile_version: 0.155.0
helmfile_version: 0.155.1
helmfile_url: "https://github.com/helmfile/helmfile/releases/download/v{{ helmfile_version }}/helmfile_{{ helmfile_version }}_{{ ansible_system | lower }}_amd64.tar.gz"
install_dir: /usr/local/bin
4 changes: 2 additions & 2 deletions pipelines/dockerfiles/tool-box/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ RUN set -exo pipefail; curl -fsSL --retry 3 -o ${HELM_FILE} ${HELM_URL}; \
sha256sum ${HELM_FILE} | grep ${HELM_SHA256}; \
tar xvzf ${HELM_FILE} -C ${INSTALL_DIR} --strip-components=1 linux-amd64/helm

ARG HELMFILE_VERSION=0.155.0
ARG HELMFILE_VERSION=0.155.1
ARG HELMFILE_URL=https://github.com/helmfile/helmfile/releases/download/v${HELMFILE_VERSION}/helmfile_${HELMFILE_VERSION}_linux_amd64.tar.gz
ARG HELMFILE_FILE=helmfile_${HELMFILE_VERSION}_linux_amd64.tar.gz
ARG HELMFILE_SHA256=2c9cf4e2e41207f066a0b6013ce878f49492fe7126c69a7718d3e0a637d2649c
ARG HELMFILE_SHA256=979c38f23dba0b9b15abb2c14d2a92af9ff050a2a140d42b879d3f5438fabcd0

RUN set -exo pipefail; curl -fsSL --retry 3 -o ${HELMFILE_FILE} ${HELMFILE_URL}; \
sha256sum ${HELMFILE_FILE} | grep ${HELMFILE_SHA256}; \
Expand Down

0 comments on commit 515628c

Please sign in to comment.