This file contains hidden or 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: v1 | |
| kind: ConfigMap | |
| metadata: | |
| name: concourse-keys | |
| data: | |
| authorized_worker_keys: |+ | |
| ssh-rsa {{public_key_text}} worker-key | |
| session_signing_key: |+ | |
| -----BEGIN RSA PRIVATE KEY----- |
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| """Usage: render_jinja.py <template_file> <parameters_file> | |
| Parameters file must be yaml encoded. Use Jinja2 to reference in template. | |
| Options: -h | |
| """ | |
| from docopt import docopt | |
| from jinja2 import Environment, FileSystemLoader |
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| """Yaml Parser | |
| Usage: yaml_parser.py [-f FILE] [KEYS] | |
| Parses yaml file using provided keys in 'key.otherkey.anotherkey' format | |
| If result is a datastructure, response comes in JSON | |
| Arguments: |
NewerOlder