mirror of
https://github.com/Expand-sys/awx-on-k3s
synced 2025-12-16 14:02:15 +11:00
Merge pull request #63 from vrubiolo/vrubiolo
Improve documentation for using private registries
This commit is contained in:
commit
772156bd87
1 changed files with 2 additions and 2 deletions
|
|
@ -207,10 +207,10 @@ sudo systemctl restart k3s
|
||||||
If this is successfully applied, you can check the applied configuration in the `config.registry` section of the following command.
|
If this is successfully applied, you can check the applied configuration in the `config.registry` section of the following command.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sudo /usr/local/bin/crictl info
|
sudo /usr/local/bin/k3s crictl info
|
||||||
|
|
||||||
# With jq
|
# With jq
|
||||||
sudo /usr/local/bin/crictl info | jq .config.registry
|
sudo /usr/local/bin/k3s crictl info | jq .config.registry
|
||||||
```
|
```
|
||||||
|
|
||||||
If you want Kubernetes to be able to pull images directly from this private registry, alternatively you can also manually create `imagePullSecrets` for the Pod instead of writing your credentials in `auth` in `registries.yaml`. [Another guide about rate limiting on Docker Hub](../tips/dockerhub-rate-limit.md) explains how to use `ImagePullSecrets`.
|
If you want Kubernetes to be able to pull images directly from this private registry, alternatively you can also manually create `imagePullSecrets` for the Pod instead of writing your credentials in `auth` in `registries.yaml`. [Another guide about rate limiting on Docker Hub](../tips/dockerhub-rate-limit.md) explains how to use `ImagePullSecrets`.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue