I hereby claim:
- I am halberom on github.
- I am gerardlynch (https://keybase.io/gerardlynch) on keybase.
- I have a public key ASALLonWT65ma5yZLjCR-s7duB_Iuf_bcCosizZhabxVXwo
To claim this, I am signing this object:
FROM ghcr.io/goss-org/goss as goss | |
FROM python | |
COPY --from=goss /usr/bin/goss /usr/bin/goss | |
WORKDIR /app | |
COPY goss.yaml . | |
COPY main.py . | |
COPY --chmod=755 entrypoint.sh . |
data "aws_ami" "amazon_linux_2" { | |
most_recent = true | |
filter { | |
name = "owner-alias" | |
values = ["amazon"] | |
} | |
filter { | |
name = "name" |
--- | |
- hosts: localhost | |
gather_facts: false | |
connection: local | |
vars: | |
nvidia_cards_and_drivers: | |
# Comment the following list item to see the difference | |
- model: "Quadro FX 5800" | |
driver_version: "340xx" | |
- model: "Quadro 4000" |
--- | |
- hosts: localhost | |
gather_facts: false | |
vars: | |
foo: '' | |
bar: foo | |
#abc | |
xyz: true | |
tasks: | |
- debug: |
--- | |
- hosts: localhost | |
connection: local | |
gather_facts: false | |
vars: | |
mylist: | |
- one | |
- two | |
- three | |
myvar1: foo |
PLAY [localhost] *********************************************************************************************************************************************************************************************************************************************************************************************************************************************************** | |
TASK [Gathering Facts] ***************************************************************************************************************************************************************************************************************************************************************************************************************************************************** | |
ok: [localhost] | |
TASK [file] ************************************************************************************************************************************************************************************************************************************************************************ |
PLAY [localhost] *********************************************************************************************************************************************************************************************************************************************************************************************************************************************************** | |
TASK [Gathering Facts] ***************************************************************************************************************************************************************************************************************************************************************************************************************************************************** | |
ok: [localhost] | |
TASK [set_fact] ******************************************************************************************************************************************************************************************************************************************************************** |
.PHONY: bump | |
# version bump, assumes we're in treeder/bump in CircleCI | |
bump: | |
@git config --global user.email "-" | |
@git config --global user.name "CircleCi" | |
@(git tag --sort=-creatordate | grep -E '^\d+\.\d+\.\d+$$' || echo '0.0.0') | head -n 1 > VERSION | |
@/script/bump $$(git log -1 --pretty=%B) | |
@git tag $$(cat VERSION) | |
@git push origin $$(cat VERSION) |
I hereby claim:
To claim this, I am signing this object:
--- | |
- hosts: "{{ pattern }}" | |
gather_facts: True | |
tasks: | |
- name: combine all ipv4 | |
set_fact: | |
all_ipv4: "{{ all_ipv4 + ansible_all_ipv4_addresses }}" | |
- name: reduce to matching ip's | |
set_fact: |