Merge pull request #40 from kurokobo/custom-ee

fix: replace custom ee with 2.12-custom
This commit is contained in:
kurokobo 2022-02-19 13:38:24 +09:00 committed by GitHub
commit 6d70d1860c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View file

@ -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:

View file

@ -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
View file

@ -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.