Skip to content

Commit

Permalink
added cilium-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
d4rkfella committed Dec 3, 2024
1 parent 03b7cf9 commit 0ebf11f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ ARG VIRTCTL_VERSION=v1.4.0
ARG KUBELOGIN_VERSION=v1.31.0
# renovate: depName=cilium/hubble
ARG HUBBLE_VERSION=v1.16.4
# renovate: depName=cilium/cilium-cli
ARG CILIUM_VERSION=v0.16.20

ENV LANG="C.UTF-8"
ENV SHELL=/bin/bash
Expand Down Expand Up @@ -59,6 +61,9 @@ RUN apk update && \
curl -fsSLO "https://dl.k8s.io/release/$KUBECTL_VERSION/bin/linux/amd64/kubectl.sha256" && \
echo "$(cat kubectl.sha256) kubectl" | sha256sum --check --strict && \
mv ./kubectl /usr/local/bin/kubectl && \
curl -L --fail --remote-name-all https://github.com/cilium/cilium-cli/releases/download/$CILIUM_VERSION/cilium-linux-amd64.tar.gz{,.sha256sum} && \
sha256sum --check --strict cilium-linux-amd64.tar.gz.sha256sum && \
tar xzvf cilium-linux-amd64.tar.gz -C /usr/local/bin && \
curl -L --fail --remote-name-all https://github.com/cilium/hubble/releases/download/$HUBBLE_VERSION/hubble-linux-amd64.tar.gz{,.sha256sum} && \
sha256sum --check --strict hubble-linux-amd64.tar.gz.sha256sum && \
tar xzvf hubble-linux-amd64.tar.gz -C /usr/local/bin && \
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
"name": "Kubernetes Management",

"image": "ghcr.io/darkfella91/devcontainer:v1.0.0@sha256:d53aa00dad1141f1cf4401aecc67d23f0f61314c8c035e6f093d8de28c0e434b",
"image": "ghcr.io/darkfella91/devcontainer:v1.0.0@sha256:2362de902a547f2dc50b12f692e0d46c9146627330b5256526fdc1d3307a5d8e",

"postStartCommand": "/usr/bin/direnv allow /project/.envrc",

Expand Down

0 comments on commit 0ebf11f

Please sign in to comment.