Skip to content

Commit 78f8cad

Browse files
kianmengmuayyad-alsadi
authored andcommitted
Fix typos
Found via `codespell -L poped`
1 parent 7942a54 commit 78f8cad

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/awx17/roles/local_docker/tasks/set_image.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
- name: Manage AWX Container Images
33
block:
4-
- name: Export Docker awx image if it isnt local and there isnt a registry defined
4+
- name: Export Docker awx image if it isn't local and there isn't a registry defined
55
docker_image:
66
name: "{{ awx_image }}"
77
tag: "{{ awx_version }}"

podman_compose.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def fix_mount_dict(compose, mount_dict, proj_name, srv_name):
220220
vol = (vols.get(source, None) or {}) if source else {}
221221
name = vol.get("name", None)
222222
mount_dict["_vol"] = vol
223-
# handle anonymouse or implied volume
223+
# handle anonymous or implied volume
224224
if not source:
225225
# missing source
226226
vol["name"] = "_".join(
@@ -591,7 +591,7 @@ def get_secret_args(compose, cnt, secret):
591591
# docker-compose does not support external secrets outside of swarm mode.
592592
# However accessing these via podman is trivial
593593
# since these commands are directly translated to
594-
# podman-create commands, albiet we can only support a 1:1 mapping
594+
# podman-create commands, albeit we can only support a 1:1 mapping
595595
# at the moment
596596
if declared_secret.get("external", False) or declared_secret.get("name", None):
597597
secret_opts += f",uid={uid}" if uid else ""
@@ -618,7 +618,7 @@ def get_secret_args(compose, cnt, secret):
618618
return ["--secret", "{}{}".format(secret_name, secret_opts)]
619619

620620
raise ValueError(
621-
'ERROR: unparseable secret: "{}", service: "{}"'.format(
621+
'ERROR: unparsable secret: "{}", service: "{}"'.format(
622622
secret_name, cnt["_service"]
623623
)
624624
)

0 commit comments

Comments
 (0)