Skip to content

Instantly share code, notes, and snippets.

View dyasny's full-sized avatar

Dan Yasny dyasny

  • ChiselStrike
  • Canada
View GitHub Profile
TASK [Create a public network] *************************************************
task path: /home/stack/ansible-populate-openstack/test.yml:92
ESTABLISH LOCAL CONNECTION FOR USER: stack
127.0.0.1 EXEC ( umask 22 && mkdir -p "$( echo $HOME/.ansible/tmp/ansible-tmp-1455033355.19-231013951800143 )" && echo "$( echo $HOME/.ansible/tmp/ansible-tmp-1455033355.19-231013951800143 )" )
127.0.0.1 PUT /tmp/tmpWXBdAp TO /home/stack/.ansible/tmp/ansible-tmp-1455033355.19-231013951800143/os_network
127.0.0.1 EXEC LANG=en_US.utf8 LC_ALL=en_US.utf8 LC_MESSAGES=en_US.utf8 /usr/bin/python /home/stack/.ansible/tmp/ansible-tmp-1455033355.19-231013951800143/os_network; rm -rf "/home/stack/.ansible/tmp/ansible-tmp-1455033355.19-231013951800143/" > /dev/null 2>&1
changed: [localhost] => {"changed": true, "id": "099c0071-5931-4c4c-841e-f46367c9d594", "invocation": {"module_args": {"admin_state_up": true, "api_timeout": null, "auth": null, "auth_type": null, "availability_zone": null, "cacert": null, "cert": null, "cloud": null, "end
@dyasny
dyasny / kv.yaml
Created January 22, 2019 17:38
Key-Value cassandra-stress.yaml
keyspace: kvtest
keyspace_definition: |
CREATE KEYSPACE kvtest WITH replication = {'class': 'SimpleStrategy', 'replication_factor': 1};
table: kvexample
table_definition: |
CREATE TABLE kvexample (
key text,
val text,
PRIMARY KEY (key))
@dyasny
dyasny / iot.yaml
Created January 22, 2019 17:39
IoT cassandra-stress yaml
keyspace: mctest
keyspace_definition: |
CREATE KEYSPACE mctest WITH replication = {'class': 'SimpleStrategy', 'replication_factor': 1};
table: iotexample
table_definition: |
CREATE TABLE iotexample (
sensor uuid,
temperature int,
humidity int,
@dyasny
dyasny / appset.yaml
Created January 26, 2022 16:15
argocd application set example
apiVersion: argoproj.io/v1alpha1
kind: ApplicationSet
metadata:
name: overlord
namespace: argocd
spec:
generators:
- git:
repoURL: https://github.com/org/repo.git
revision: HEAD