From 4ba9615c4cd4e432df78e2e8fba5ef4eab1ab212 Mon Sep 17 00:00:00 2001 From: andriipanchuk Date: Mon, 30 Aug 2021 10:11:58 -0500 Subject: [PATCH 1/3] update maintainers --- hardening_manifest.yaml | 6 +++--- renovate.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/hardening_manifest.yaml b/hardening_manifest.yaml index 8b1069f..33b0782 100644 --- a/hardening_manifest.yaml +++ b/hardening_manifest.yaml @@ -45,7 +45,7 @@ resources: # List of project maintainers maintainers: -- email: "cadehuismann@seed-innovations.com" - name: "Cade Huismann" - username: "cadehuismann" +- email: "andrii@alphabravo.io" + name: "Andrii Panchuk" + username: "andriipanchuk" cht_member: true diff --git a/renovate.json b/renovate.json index 3c6bac3..4dae250 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,6 @@ { "assignees": [ - "@cadehuismann" + "@andriipanchuk" ], "baseBranches": [ "development" -- GitLab From 64a9f451e1c1b16e6ac06bf2dd0ce2a1d43eebcb Mon Sep 17 00:00:00 2001 From: andriipanchuk Date: Mon, 30 Aug 2021 10:14:14 -0500 Subject: [PATCH 2/3] update to 1.10.4 --- hardening_manifest.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hardening_manifest.yaml b/hardening_manifest.yaml index 33b0782..9d28a34 100644 --- a/hardening_manifest.yaml +++ b/hardening_manifest.yaml @@ -8,7 +8,7 @@ name: "opensource/istio/istioctl" # The most specific version should be the first tag and will be shown # on ironbank.dsop.io tags: -- "1.10.2" +- "1.10.4" - "latest" # Build args passed to Dockerfile ARGs @@ -27,7 +27,7 @@ labels: org.opencontainers.image.url: "https://github.com/istio/istio/tree/master/istioctl" ## Name of the distributing entity, organization or individual org.opencontainers.image.vendor: "opensource" - org.opencontainers.image.version: "1.10.2" + org.opencontainers.image.version: "1.10.4" ## Keywords to help with search (ex. "cicd,gitops,golang") mil.dso.ironbank.image.keywords: "istio" ## This value can be "opensource" or "commercial" @@ -37,11 +37,11 @@ labels: # List of resources to make available to the offline build context resources: -- url: https://github.com/istio/istio/releases/download/1.10.2/istio-1.10.2-linux-arm64.tar.gz +- url: https://github.com/istio/istio/releases/download/1.10.4/istio-1.10.4-linux-arm64.tar.gz filename: istioctl.tar.gz validation: type: "sha256" - value: "9fd871109bf1fe813d5b4b55d4d19e3b17f947539cf48bcf5d735b4c2ce3b879" + value: "a8e5ce69aac3ccd2b533be1e461c6e20c867589366a2b461ad970b4f9c53a8dc" # List of project maintainers maintainers: -- GitLab From 2334529f56284f888b1cef01ee8cb627e39294de Mon Sep 17 00:00:00 2001 From: andriipanchuk Date: Mon, 30 Aug 2021 10:31:13 -0500 Subject: [PATCH 3/3] fix folder name --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 731d5a3..22ada5f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} COPY istioctl.tar.gz / RUN tar -xzf istioctl.tar.gz -C /usr/local/bin -RUN find /usr/local/bin/istio-1.10.2/samples/certs/ -type f \( -iname \*.key -o -iname \*.pem \) -exec rm -f {} \; +RUN find /usr/local/bin/istio-1.10.4/samples/certs/ -type f \( -iname \*.key -o -iname \*.pem \) -exec rm -f {} \; USER 1001 ENTRYPOINT ["/usr/local/bin/istioctl"] -- GitLab