2024-07-04 08:39:43 +02:00
|
|
|
|
# oc-monitor
|
|
|
|
|
|
2024-07-25 18:48:25 +02:00
|
|
|
|
## Deploy in k8s (dev)
|
|
|
|
|
|
|
|
|
|
While a registry with all of the OC docker images has not been set-up we can export this image to k3s ctr
|
|
|
|
|
|
2024-08-19 11:43:40 +02:00
|
|
|
|
> docker save oc-monitord:latest | sudo k3s ctr images import -
|
2024-07-25 18:48:25 +02:00
|
|
|
|
|
2024-08-19 11:43:40 +02:00
|
|
|
|
Then in the pod manifest for oc-monitord use :
|
2024-07-25 18:48:25 +02:00
|
|
|
|
|
|
|
|
|
```
|
2024-08-19 11:43:40 +02:00
|
|
|
|
image: docker.io/library/oc-monitord
|
2024-07-25 18:48:25 +02:00
|
|
|
|
imagePullPolicy: Never
|
|
|
|
|
```
|
|
|
|
|
|
2024-07-26 10:30:26 +02:00
|
|
|
|
Not doing so will end up in the pod having a `ErrorImagePull`
|
|
|
|
|
|