Christine Draper
Christine Draper
I am getting cross-origin errors when requirejs tries to load files using the text! requirejs plugin. Should I be able to use requirejs plugins and are there any tricks I...
Is there any way to override the base URL for location in the response metadata? Our scim service is running in a k8s cluster behind a proxy, so the location...
I am creating a class and index as follows: ``` create class V_Entity extends V; create property V_Entity.entityId STRING; create property V_Entity.entityType STRING; create index entity_index ON V_Entity (entityId, entityType)...
I'm just getting started with tinkerpop and orientdb. I've been trying to install this plugin using: ``` :install com.michaelpollmeier orientdb-gremlin 3.2.3.0 ``` in the latest console (3.2.4) and getting dependency...
I have an existing AMI called appserver_image (not in the chef provisioning data bag). I run a recipe: ``` machine_image "appserver_image" do # stuff end ``` It generates an instance...
When I create a machine_image, the AMI normally does not become available in time and the recipe fails. This means that the instance created in order to create the image...
With chef-provisioning-aws 1.4.1 it looks like machine_image isn't waiting until the instance is properly available before trying to create the image. It completes OK on the second chef-client run. ```...
A recipe like this: ``` machine "dbserver" do run_list ["testapp::db"] end ``` will cause the resource to update every run, because it compares "recipe[testapp::db]" against "testapp::db" and decides they are...
I am using v1.1.1 in local mode to setup a machine that should then be managed by a server specified in chef_server_url. My problem is that the created /etc/chef/client.rb points...
Using latest chef-provisioning dev driver and chef-provisioning-aws 1.2.1 ``` require 'chef/provisioning/aws_driver' with_driver 'aws' with_machine_options( { :bootstrap_options => { :key_name => 'blah', :instance_type => 't2.micro', :associate_public_ip_address => true }, :convergence_options =>...