[root@localhost ~]# mkdir /centos_chroot
[root@localhost ~]# mkdir -p /centos_chroot/var/lib/rpm
| #!/usr/bin/python | |
| # vim: set ts=4 sw=4 et | |
| """ | |
| slurm_sched_stats.py | |
| A script that uses PySlurm to get the slurm scheduler statistics. | |
| """ | |
| import pickle | |
| import socket |
Currently, there is an explosion of tools that aim to manage secrets for automated, cloud native infrastructure management. Daniel Somerfield did some work classifying the various approaches, but (as far as I know) no one has made a recent effort to summarize the various tools.
This is an attempt to give a quick overview of what can be found out there. The list is alphabetical. There will be tools that are missing, and some of the facts might be wrong--I welcome your corrections. For the purpose, I can be reached via @maxvt on Twitter, or just leave me a comment here.
There is a companion feature matrix of various tools. Comments are welcome in the same manner.
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
| node_modules | |
| *.pem |
| #!/usr/bin/env bash | |
| set -o nounset -o errexit -o pipefail | |
| usage() { | |
| cat <<EOM | |
| Usage: | |
| $(basename $0) [OPTIONS] | |
| $(basename $0) [ -j | --jenkins-url | -n | --node-name | -s | -d | --desc | --slave-home | -e | --executors | -sh | --ssh-host | -sp | --ssh-port | |
| | -c | --cred-id | -l | --labels | -u | --user-id | -p | --password | -h | --help ] |
| #!groovy | |
| /* | |
| * This script configures the Jenkins base URL. | |
| */ | |
| import jenkins.model.JenkinsLocationConfiguration | |
| JenkinsLocationConfiguration location = Jenkins.instance.getExtensionList('jenkins.model.JenkinsLocationConfiguration')[0] | |
| location.url = 'https://jenkins-as-code-poc.devtail.io/' |
| 1. Setup a project | |
| 2. Add groovy SDK support: | |
| https://www.bonusbits.com/wiki/HowTo:Add_Groovy_SDK_to_IntelliJ_IDEA | |
| 3. Download http://(yourjenkinsurl)/job/(yourpipelinejob)/pipeline-syntax/gdsl | |
| - this will give you the .gdsl file - download this to the src folder of your project. | |
| 4. Finally follow this step - right click on the src folder -> Mark directory as -> Sources Root |
| -- Description: | |
| -- ------------ | |
| -- | |
| -- This is an example schema for storing collectd metrics in a TimescaleDB | |
| -- dabase (see https://www.timescale.com/). It is based on the PostgreSQL | |
| -- schema contributed by Sebastian Harl. | |
| -- | |
| -- Prerequisities: | |
| -- --------------- | |
| -- |