Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
entries:
- description: >
For Ansible-based operators, Python package installation in the Docker
image is delegated to a pipenv managed Pipfile and Pipfile.lock, pinning
both the main installed packages and their subdependencies. This prevents
installing conflicting (sub)dependencies

kind: change

breaking: false

- description: >
For Ansible-based operators, the Python following packages were updated:
`openshift` was updated to 0.11.2, `ansible-runner` was updated to 1.4.6.

kind: change

breaking: false
17 changes: 17 additions & 0 deletions images/ansible-operator/Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
ansible-runner = "==1.4.6"
ansible-runner-http = "==1.0.0"
ipaddress = "==1.0.23"
openshift = "==0.11.2"
Comment thread
reinvantveer marked this conversation as resolved.
ansible = "==2.9.15"
jmespath = "==0.10.0"

[dev-packages]

[requires]
python_version = "3.8"
Loading