Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
a613a27d93 | |||
f30535a4ce | |||
26fb79d44c | |||
7d637c2767 | |||
ded65383f0 | |||
df41278aca | |||
2af9a0938f | |||
51d7d44bb7 | |||
21b05af8c6 | |||
8cb0241ba6 | |||
9d63839226 | |||
40e46cd22e | |||
d12c4f1261 | |||
d95c5e238d |
2
.cz.yaml
2
.cz.yaml
@ -4,4 +4,4 @@ commitizen:
|
||||
name: cz_conventional_commits
|
||||
tag_format: $major.$minor.$patch$prerelease
|
||||
update_changelog_on_bump: true
|
||||
version: 0.2.0
|
||||
version: 0.2.2
|
||||
|
12
CHANGELOG.md
12
CHANGELOG.md
@ -1,3 +1,15 @@
|
||||
## 0.2.2 (2023-10-16)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **execution_environment**: [26fb79d4](https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/commit/26fb79d44cc06eb50ec750a5d82bab158af5cd11) - ansible runner required [ [!93](https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/merge_requests/93) ]
|
||||
|
||||
## 0.2.1 (2023-09-02)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **python**: [40e46cd2](https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/commit/40e46cd22e6dab013fd04b3c6f479e143c1b424c) - removed python3.9 as it as causing issues with 3.11 [ [!89](https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/merge_requests/89) [#9](https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/issues/9) ]
|
||||
|
||||
## 0.2.0 (2023-07-04)
|
||||
|
||||
### Bug Fixes
|
||||
|
@ -48,14 +48,15 @@ RUN apt update \
|
||||
openssh-client \
|
||||
git \
|
||||
sshpass \
|
||||
&& rm -rf /var/lib/apt/lists/* \
|
||||
&& mkdir -p /etc/ansible/roles \
|
||||
&& mkdir -p /etc/ansible/collections \
|
||||
&& mkdir -p /workdir \
|
||||
&& apt list --installed \
|
||||
# see issue https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/issues/9 for following two lines
|
||||
&& rm /usr/bin/python3 \
|
||||
&& ln -s /usr/local/bin/python3.11 /usr/bin/python3
|
||||
&& apt remove -y \
|
||||
python3* \
|
||||
libpython3* \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
|
||||
WORKDIR /workdir
|
||||
|
Submodule gitlab-ci updated: 975de7aca2...a5a9fa4437
Submodule includes/etc/ansible/playbooks updated: 097346982a...d8e6dd46f3
Submodule includes/etc/ansible/roles updated: 5003f6e83b...6317782ade
@ -1,5 +1,6 @@
|
||||
ansible-core==2.14.5
|
||||
ansible-lint==6.15.0
|
||||
ansible-runner==2.3.4
|
||||
|
||||
# Required for community.general.gitlab_*
|
||||
python_gitlab==3.14.0
|
Reference in New Issue
Block a user