mirror of
https://github.com/Expand-sys/awx-on-k3s
synced 2025-12-16 14:02:15 +11:00
Merge pull request #40 from kurokobo/custom-ee
fix: replace custom ee with 2.12-custom
This commit is contained in:
commit
6d70d1860c
3 changed files with 5 additions and 5 deletions
|
|
@ -132,7 +132,7 @@ NAME READY STATUS RESTARTS AGE
|
||||||
automation-job-50-qsjbp 1/1 Running 0 17s
|
automation-job-50-qsjbp 1/1 Running 0 17s
|
||||||
```
|
```
|
||||||
|
|
||||||
The Pod has your own specification as defined above.
|
The Pod has your own specification as defined above. Note that the `image` in example output below has been overridden by the Execution Environment which defined in Job Template.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ kubectl -n ee-demo get pod automation-job-50-qsjbp -o yaml
|
$ kubectl -n ee-demo get pod automation-job-50-qsjbp -o yaml
|
||||||
|
|
@ -146,7 +146,7 @@ metadata:
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
...
|
...
|
||||||
image: registry.example.com/ansible/ee:2.10-custom
|
image: registry.example.com/ansible/ee:2.12-custom
|
||||||
...
|
...
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
|
|
|
||||||
|
|
@ -547,8 +547,8 @@ Then simply `login`, `tag` and `push`.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker login galaxy.example.com
|
docker login galaxy.example.com
|
||||||
docker tag registry.example.com/ansible/ee:2.10-custom galaxy.example.com/demo/ee:2.10-custom
|
docker tag registry.example.com/ansible/ee:2.12-custom galaxy.example.com/demo/ee:2.12-custom
|
||||||
docker push galaxy.example.com/demo/ee:2.10-custom
|
docker push galaxy.example.com/demo/ee:2.12-custom
|
||||||
```
|
```
|
||||||
|
|
||||||
## Use with AWX
|
## Use with AWX
|
||||||
|
|
|
||||||
2
runner/env/settings
vendored
2
runner/env/settings
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
process_isolation: true
|
process_isolation: true
|
||||||
process_isolation_executable: docker
|
process_isolation_executable: docker
|
||||||
container_image: registry.example.com/ansible/ee:2.10-custom
|
container_image: registry.example.com/ansible/ee:2.12-custom
|
||||||
|
|
||||||
# Specify additional bind-mount points to an isolated Docker or Podman container.
|
# Specify additional bind-mount points to an isolated Docker or Podman container.
|
||||||
# Note that this is UNDOCUMENTED option.
|
# Note that this is UNDOCUMENTED option.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue