├── .DS_Store ├── .gitignore ├── Jenkinsfile ├── README.md ├── images ├── global_pipeline_libraries.png └── pipeline_workflow.png ├── src └── org │ └── dxrf │ └── chef_automation.groovy ├── utilities ├── .rubocop.yml ├── create_data_bag_from_json.rb ├── generate_env_from_bu_json.rb └── update_global_env_pins.rb └── vars ├── parseGlobalEnvironments.groovy ├── promoteCookbook.groovy ├── promotePolicyfile.groovy ├── updateEnvironment.groovy └── uploadProfile.groovy /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmassardo/Chef-Jenkins-Library/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmassardo/Chef-Jenkins-Library/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmassardo/Chef-Jenkins-Library/HEAD/README.md -------------------------------------------------------------------------------- /images/global_pipeline_libraries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmassardo/Chef-Jenkins-Library/HEAD/images/global_pipeline_libraries.png -------------------------------------------------------------------------------- /images/pipeline_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmassardo/Chef-Jenkins-Library/HEAD/images/pipeline_workflow.png -------------------------------------------------------------------------------- /src/org/dxrf/chef_automation.groovy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmassardo/Chef-Jenkins-Library/HEAD/utilities/.rubocop.yml -------------------------------------------------------------------------------- /utilities/create_data_bag_from_json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmassardo/Chef-Jenkins-Library/HEAD/utilities/create_data_bag_from_json.rb -------------------------------------------------------------------------------- /utilities/generate_env_from_bu_json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmassardo/Chef-Jenkins-Library/HEAD/utilities/generate_env_from_bu_json.rb -------------------------------------------------------------------------------- /utilities/update_global_env_pins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmassardo/Chef-Jenkins-Library/HEAD/utilities/update_global_env_pins.rb -------------------------------------------------------------------------------- /vars/parseGlobalEnvironments.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmassardo/Chef-Jenkins-Library/HEAD/vars/parseGlobalEnvironments.groovy -------------------------------------------------------------------------------- /vars/promoteCookbook.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmassardo/Chef-Jenkins-Library/HEAD/vars/promoteCookbook.groovy -------------------------------------------------------------------------------- /vars/promotePolicyfile.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmassardo/Chef-Jenkins-Library/HEAD/vars/promotePolicyfile.groovy -------------------------------------------------------------------------------- /vars/updateEnvironment.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmassardo/Chef-Jenkins-Library/HEAD/vars/updateEnvironment.groovy -------------------------------------------------------------------------------- /vars/uploadProfile.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmassardo/Chef-Jenkins-Library/HEAD/vars/uploadProfile.groovy --------------------------------------------------------------------------------