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
apiVersion: argoproj.io/v1alpha1 | |
kind: ApplicationSet | |
metadata: | |
name: overlord | |
namespace: argocd | |
spec: | |
generators: | |
- git: | |
repoURL: https://github.com/org/repo.git | |
revision: HEAD |
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
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, |
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
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)) |
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
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 |