Skip to content

Commit

Permalink
Remove support of k3d and Dapr (#62)
Browse files Browse the repository at this point in the history
* Remove support of k3d and Dapr

* Remove outdated AppManifest.json
  • Loading branch information
BjoernAtBosch authored Mar 20, 2024
1 parent cb38cb1 commit 30da6d5
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 64 deletions.
1 change: 0 additions & 1 deletion Dockerfiles/cpp/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ COPY ./common .

ARG TARGETARCH
RUN ./install-python.sh && \
./install-dapr-cli.sh && \
./install-velocitas-cli.sh ${TARGETARCH} && \
./install-kanto.sh ${TARGETARCH}

Expand Down
11 changes: 2 additions & 9 deletions Dockerfiles/cpp/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dockerfile": "Dockerfile",
"context": "../../..",
"args": {
"SDK_TAG": "v0.4.2"
"SDK_TAG": "v0.4.3"
}
},
"features": {
Expand All @@ -13,13 +13,6 @@
"version": "2.41.0"
},
"ghcr.io/devcontainers/features/common-utils:2.1.2": {},
"ghcr.io/devcontainers/features/docker-in-docker:2.5.0": {},
"ghcr.io/devcontainers/features/kubectl-helm-minikube:1.1.4": {
"version": "1.28.0",
"helm": "3.12.3",
"minikube": "none"
},
"ghcr.io/rio/features/k3d:1.1.0": {},
"ghcr.io/rio/features/k9s:1.1.5": {}
"ghcr.io/devcontainers/features/docker-in-docker:2.5.0": {}
}
}
1 change: 0 additions & 1 deletion Dockerfiles/python/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ COPY ./common .

ARG TARGETARCH
RUN ./install-python.sh && \
./install-dapr-cli.sh && \
./install-velocitas-cli.sh ${TARGETARCH} && \
./install-kanto.sh ${TARGETARCH}

Expand Down
9 changes: 1 addition & 8 deletions Dockerfiles/python/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,6 @@
"version": "2.41.0"
},
"ghcr.io/devcontainers/features/common-utils:2.1.2": {},
"ghcr.io/devcontainers/features/docker-in-docker:2.5.0": {},
"ghcr.io/devcontainers/features/kubectl-helm-minikube:1.1.4": {
"version": "1.28.0",
"helm": "3.12.3",
"minikube": "none"
},
"ghcr.io/rio/features/k3d:1.1.0": {},
"ghcr.io/rio/features/k9s:1.1.5": {}
"ghcr.io/devcontainers/features/docker-in-docker:2.5.0": {}
}
}
14 changes: 0 additions & 14 deletions common/AppManifest.json

This file was deleted.

30 changes: 0 additions & 30 deletions common/install-dapr-cli.sh

This file was deleted.

2 changes: 1 addition & 1 deletion common/install-python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ set -e
echo "#######################################################"
echo "### Installing python version 3 ###"
echo "#######################################################"
PYTHON_VERSION=$(cat AppManifest.json | jq .[].dependencies.python.version | tr -d '"')
PYTHON_VERSION='3.10'

sudo apt-get update && apt-get install -y python3-distutils python$PYTHON_VERSION python3-dev
curl -fsSL https://bootstrap.pypa.io/get-pip.py | sudo python$PYTHON_VERSION
Expand Down

0 comments on commit 30da6d5

Please sign in to comment.