Douglas Garstang
Douglas Garstang
It seems that the rundeck_job provider doesn't support the ability to make a job's node filter not editable. In the yaml representation of a job, this is the `nodeFilterEditable` key...
I have the following recipe: ``` require 'chef/provisioning/docker_driver' machine_image 'ssh_server' do recipe 'java' machine_options( :docker_options => { :base_image => { :name => 'ubuntu', :repository => 'ubuntu', :tag => '14.04' }...
I have this Vagrantfile: ```Vagrant.configure("2") do |config| config.vm.box = "google/gce" config.vm.provider :google do |google, override| google.google_project_id = "mycorp-user-dgarstang" google.network_project_id = "mycorp-vpc-sandbox" google.subnetwork = "http://www.googleapis.com/compute/v1/projects/mycorp-vpc-sandbox/regions/us-west1/subnetworks/default-us-west1" google.network = "default" google.google_json_key_location = "/Users/dgarstang/git/puppet-integration-image/mycorp-user-dgarstang-21dbe490a8d8.json"...
I have this Vagrantfile ``` Vagrant.configure("2") do |config| config.vm.box = "google/gce" config.vm.provider :google do |google, override| google.google_project_id = "corp-user-dgarstang" google.google_json_key_location = "~/Downloads/corp-user-dgarstang.json" google.image_family = "centos-7" google.subnetwork = "default-us-west1" #google.subnetwork =...