This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.7' | |
volumes: | |
opa_data: | |
driver: local | |
networks: | |
opa: | |
driver: bridge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"mods": | |
[ | |
{ | |
"name": "base", | |
"enabled": true | |
}, | |
{ | |
"name": "space-exploration", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: 1 | |
build_arg_defaults: | |
EE_BASE_IMAGE: 'quay.io/ansible/awx-ee:latest' | |
additional_build_steps: | |
append: | |
- ADD awx-sample-1.0.0.tar.gz /ansible-tower-sample-1.0.0.tar.gz | |
- RUN ansible-galaxy collection install /ansible-tower-sample-1.0.0.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.192.0/containers/codespaces-linux/.devcontainer/base.Dockerfile | |
FROM mcr.microsoft.com/vscode/devcontainers/universal:1-focal | |
RUN pip3 install --user ansible | |
USER root | |
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ | |
&& apt-get -y install python3-pexpect | |
USER codespace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM registry.access.redhat.com/ubi8/python-36 | |
USER root | |
ADD https://github.com/krallin/tini/releases/download/v0.19.0/tini /bin/tini | |
RUN pip3 install git+https://github.com/ansible/ansible-runner | |
RUN pip3 install git+https://github.com/ansible/ansible | |
RUN chmod +xr /bin/tini |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- name: Test play 1 | |
hosts: all | |
tasks: | |
- shell: sleep 60 | |
- shell: sleep 60 | |
- name: Test play 2 | |
hosts: all | |
tasks: | |
- shell: sleep 60 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ valgrind --tool=massif python -c "from copy import deepcopy; deepcopy(dict(foo='bar'))" | |
==1322== Massif, a heap profiler | |
==1322== Copyright (C) 2003-2015, and GNU GPL'd, by Nicholas Nethercote | |
==1322== Using Valgrind-3.12.0 and LibVEX; rerun with -h for copyright info | |
==1322== Command: python -c from\ copy\ import\ deepcopy;\ deepcopy(dict(foo='bar')) | |
==1322== | |
==1322== | |
$ ms_print massif.out.1319 > ms.1319 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~ locale | |
LANG=en_US.utf8 | |
LC_CTYPE=en_US.utf8 | |
LC_NUMERIC="en_US.utf8" | |
LC_TIME="en_US.utf8" | |
LC_COLLATE="en_US.utf8" | |
LC_MONETARY="en_US.utf8" | |
LC_MESSAGES="en_US.utf8" | |
LC_PAPER="en_US.utf8" | |
LC_NAME="en_US.utf8" |
NewerOlder