Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
54cb027b11 | |||
1276cc6c80 | |||
dbddb3b433 | |||
102c50df52 | |||
60bfa9057e | |||
8e96e16073 | |||
2d54a3cc28 | |||
621dd9ea57 | |||
005a293288 | |||
db366e7b8e | |||
2bcd09c7e9 | |||
28fbff63a6 |
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.4.0
|
||||
version: 0.5.0
|
||||
|
@ -4,7 +4,7 @@ variables:
|
||||
MY_PROJECT_ID: "45741845"
|
||||
GIT_SYNC_URL: "https://$GITHUB_USERNAME_ROBOT:$GITHUB_TOKEN_ROBOT@github.com/NoFussComputing/execution_environment.git"
|
||||
|
||||
DOCKER_IMAGE_BUILD_TARGET_PLATFORMS: "linux/amd64,linux/arm64,linux/arm/v7"
|
||||
DOCKER_IMAGE_BUILD_TARGET_PLATFORMS: "linux/amd64,linux/arm64"
|
||||
DOCKER_IMAGE_PUBLISH_NAME: 'ansible-ee'
|
||||
DOCKER_IMAGE_PUBLISH_REGISTRY: docker.io/nofusscomputing
|
||||
DOCKER_IMAGE_PUBLISH_URL: https://hub.docker.com/r/nofusscomputing/$DOCKER_IMAGE_PUBLISH_NAME
|
||||
|
15
CHANGELOG.md
15
CHANGELOG.md
@ -1,3 +1,18 @@
|
||||
## 0.5.0 (2023-11-14)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **multi_arch_cpu**: [102c50df](https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/commit/102c50df52d398ead8415877fd2067436a1ee8d1) - ensure multi arch images are build [ [!116](https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/merge_requests/116) ]
|
||||
|
||||
### Features
|
||||
|
||||
- **arm32**: [dbddb3b4](https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/commit/dbddb3b4334857733d3f1b044f64ea8c745bab7c) - remove arm 32-bit support [ [!116](https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/merge_requests/116) ]
|
||||
- **container**: [8e96e160](https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/commit/8e96e160739090d428f482c160bc82e9855b865f) - add ansible receptor [ [!114](https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/merge_requests/114) [#17](https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/issues/17) ]
|
||||
- **ansible**: [2d54a3cc](https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/commit/2d54a3cc28280383b0879349d9607775fe9892c5) - add community.dns module [ [!114](https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/merge_requests/114) ]
|
||||
- **ansible-roles**: [005a2932](https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/commit/005a2932886cf57685d9d7764615cafae6b4a456) - updated submodule ansible-roles [ [!113](https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/merge_requests/113) ]
|
||||
- **ansible-roles**: [db366e7b](https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/commit/db366e7b8ea7ecff10942df89f7cac8bede2e62f) - updated submodule ansible-roles [ [!113](https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/merge_requests/113) ]
|
||||
- **ansible-roles**: [28fbff63](https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/commit/28fbff63a60ccbfa24e600f3c3c93b409e8dba2b) - updated submodule ansible-roles [ [!112](https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/merge_requests/112) ]
|
||||
|
||||
## 0.4.0 (2023-11-12)
|
||||
|
||||
### Features
|
||||
|
16
dockerfile
16
dockerfile
@ -1,4 +1,6 @@
|
||||
ARG TARGETPLATFORM=linux/amd64
|
||||
|
||||
FROM --platform=$TARGETPLATFORM quay.io/ansible/receptor:devel as receptor
|
||||
|
||||
|
||||
FROM --platform=$TARGETPLATFORM python:3.11-bullseye
|
||||
|
||||
@ -71,20 +73,22 @@ WORKDIR /workdir
|
||||
|
||||
COPY requirements.txt /tmp/requirements.txt
|
||||
|
||||
COPY --from=receptor /usr/bin/receptor /usr/bin/receptor
|
||||
|
||||
RUN pip install --upgrade pip
|
||||
RUN pip install --upgrade pip; \
|
||||
mkdir -p /var/run/receptor
|
||||
|
||||
RUN pip install --index-url https://gitlab.com/api/v4/projects/45741845/packages/pypi/simple -r /tmp/requirements.txt
|
||||
|
||||
|
||||
RUN ansible-galaxy collection install \
|
||||
awx.awx \
|
||||
# ansible.posix.authorized_key for SSH
|
||||
ansible.posix \
|
||||
awx.awx \
|
||||
# community.general.gitlab_*
|
||||
community.general \
|
||||
community.dns \
|
||||
# docker managment
|
||||
community.docker \
|
||||
# community.general.gitlab_*
|
||||
community.general \
|
||||
community.mysql \
|
||||
community.postgresql \
|
||||
kubernetes.core
|
Submodule includes/etc/ansible/roles updated: 72f7f029e9...cacc05eb2a
@ -8,3 +8,5 @@ python_gitlab==3.14.0
|
||||
psycopg2==2.9.9
|
||||
# community.mysql
|
||||
PyMySQL==1.1.0
|
||||
|
||||
dnspython
|
Reference in New Issue
Block a user