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
| 1) Create a branch with the tag | |
| git branch {tagname}-branch {tagname} | |
| git checkout {tagname}-branch | |
| 2) Include the fix manually if it's just a change .... | |
| git add . | |
| git ci -m "Fix included" | |
| or cherry-pick the commit, whatever is easier | |
| git cherry-pick {num_commit} | |
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
| local k = import 'ksonnet/ksonnet.beta.3/k.libsonnet'; | |
| local pvc = k.core.v1.persistentVolumeClaim; | |
| local kp = | |
| (import 'kube-prometheus/kube-prometheus.libsonnet') + | |
| // Uncomment the following imports to enable its patches | |
| // (import 'kube-prometheus/kube-prometheus-anti-affinity.libsonnet') + | |
| // (import 'kube-prometheus/kube-prometheus-managed-cluster.libsonnet') + | |
| // (import 'kube-prometheus/kube-prometheus-node-ports.libsonnet') + | |
| // (import 'kube-prometheus/kube-prometheus-static-etcd.libsonnet') + |
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
| sudo visudo | |
| getenforce | |
| setenforce 0 | |
| sudo setenforce 0 | |
| getenforce | |
| sudo reboot | |
| sudo getenforce | |
| exit | |
| curl -o bootstrap-salt.sh -L https://bootstrap.saltstack.com | |
| sudo sh bootstrap-salt.sh git v2017.7.2 |
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
| TMP_PATH=~/tmp_install_python | |
| # Versions section | |
| PYTHON_MAJOR=2.7 | |
| PYTHON_VERSION=$PYTHON_MAJOR.14 | |
| rm -rf $TMP_PATH | |
| mkdir $TMP_PATH | |
| cd $TMP_PATH |
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
| cronscript: | |
| file.managed: | |
| - name: /var/lib/airflow/cronfile.sh | |
| - source: salt://dag_sync/cronfile.sh.j2 | |
| - template: jinja | |
| - group: airflow | |
| - user: airflow | |
| - mode: 700 | |
| - require: | |
| - user: airflow |
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
| base: | |
| '*': | |
| - thing0 | |
| - thing1 | |
| 'name:a_name' | |
| - match: grain | |
| - thing3 |
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
| airflow[hive]: | |
| pip.installed |
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
| # Compiled source # | |
| # ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |