Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

Commit

Permalink
Minor fixes (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
johscheuer authored Aug 11, 2020
1 parent cd93f86 commit 77ed156
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docs/developing.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,7 @@ There is also a simple bash script that makes it easier to setup the development
Installing Calico (or other [CNI network plugins](https://kubernetes.io/docs/concepts/cluster-administration/networking/#how-to-implement-the-kubernetes-networking-model)) for example:

```bash
# actually we don't need the rbac rules since minikube has rbac deactivated per default
kubectl apply -f https://docs.projectcalico.org/v3.5/getting-started/kubernetes/installation/hosted/kubernetes-datastore/calico-networking/1.7/calico.yaml
kubectl apply -f https://docs.projectcalico.org/manifests/calico.yaml
```

## Use the local Docker daemon
Expand Down Expand Up @@ -121,7 +120,7 @@ sudo systemctl status containerd
Now we can build locally the new runner image:

```bash
docker build -t "$(minikube ip):5000/illuminatio-runner:dev" -f illuminatio-runner.dockerfile .
docker build -t "$(minikube ip):5000/illuminatio-runner:dev" .
```

And if you run the following command you should see the new image `docker images`.
Expand Down
2 changes: 2 additions & 0 deletions src/illuminatio/manifests/runner-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ spec:
value: {runtime}
- name: CONTAINER_RUNTIME_ENDPOINT
value: {cri_socket}
command:
- illuminatio-runner
args:
- --verbosity={log_level}
image: {image}
Expand Down
2 changes: 2 additions & 0 deletions tests/assets/containerd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ spec:
value: containerd
- name: CONTAINER_RUNTIME_ENDPOINT
value: /var/run/dockershim.sock
command:
- illuminatio-runner
args:
- --verbosity=NOTSET
image: inovex/illuminatio-runner:dev
Expand Down
2 changes: 2 additions & 0 deletions tests/assets/containerd_custom_socket.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ spec:
value: containerd
- name: CONTAINER_RUNTIME_ENDPOINT
value: /var/run/containerd/containerd.sock
command:
- illuminatio-runner
args:
- --verbosity=NOTSET
image: inovex/illuminatio-runner:dev
Expand Down
2 changes: 2 additions & 0 deletions tests/assets/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ spec:
value: docker
- name: CONTAINER_RUNTIME_ENDPOINT
value: /var/run/docker.sock
command:
- illuminatio-runner
args:
- --verbosity=NOTSET
image: inovex/illuminatio-runner:dev
Expand Down

0 comments on commit 77ed156

Please sign in to comment.