diff --git a/lib/kubetruth/config.rb b/lib/kubetruth/config.rb index 73a05e6..ddd40cf 100644 --- a/lib/kubetruth/config.rb +++ b/lib/kubetruth/config.rb @@ -49,6 +49,13 @@ def templates resource_templates.select {|k, v| active_templates.include?(k) } end + def to_s + to_h.to_json + end + + def inspect + to_s + end end DEFAULT_SPEC = { @@ -82,10 +89,10 @@ def load config = DEFAULT_SPEC.merge(root_mapping) @root_spec = ProjectSpec.new(**config) - logger.debug { "ProjectSpec for root mapping: #{@root_spec.inspect}"} + logger.debug { "ProjectSpec for root mapping: #{@root_spec}"} @override_specs = overrides.collect do |o| spec = ProjectSpec.new(**config.deep_merge(o)) - logger.debug { "ProjectSpec for override mapping: #{spec.inspect}"} + logger.debug { "ProjectSpec for override mapping: #{spec}"} spec end config diff --git a/lib/kubetruth/ctapi.rb b/lib/kubetruth/ctapi.rb index fff3f5b..a27b786 100644 --- a/lib/kubetruth/ctapi.rb +++ b/lib/kubetruth/ctapi.rb @@ -5,24 +5,17 @@ module Kubetruth class CtApi - @@instance = nil + @@api_key = nil + @@api_url = nil def self.configure(api_key:, api_url:) - @@instance = self.new(api_key: api_key, api_url: api_url) - end - - def self.reset - self.configure(api_key: instance.instance_variable_get(:@api_key), api_url: instance.api_url) - end - - def self.instance - raise ArgumentError.new("CtApi has not been configured") if @@instance.nil? - return @@instance + @@api_key = api_key + @@api_url = api_url end include GemLogger::LoggerSupport - attr_reader :api_url, :client, :apis + attr_reader :client, :apis class ApiConfiguration < CloudtruthClient::Configuration @@ -43,12 +36,17 @@ def auth_settings end - def initialize(api_key:, api_url:) + def initialize(environment: "default", tag: nil) @environments_mutex = Mutex.new @projects_mutex = Mutex.new @templates_mutex = Mutex.new - @api_key = api_key - @api_url = api_url + + raise ArgumentError.new("CtApi has not been configured") if @@api_key.nil? || @@api_url.nil? + @api_key = @@api_key + @api_url = @@api_url + + @environment = environment + @tag = tag uri = URI(@api_url) config = ApiConfiguration.new config.server_index = nil @@ -57,7 +55,7 @@ def initialize(api_key:, api_url:) host_port << ":#{uri.port}" unless [80, 443].include?(uri.port) config.host = host_port config.base_path = uri.path - config.api_key = {'ApiKeyAuth' => api_key} + config.api_key = {'ApiKeyAuth' => @api_key} config.api_key_prefix = {'ApiKeyAuth' => "Api-Key"} config.logger = logger # config.debugging = logger.debug? @@ -110,11 +108,10 @@ def project_id(project) project_id.to_s end - def parameters(project:, environment: "default", tag: nil) - env_id = environment_id(environment) + def parameters(project:) proj_id = project_id(project) - opts = {environment: env_id} - opts[:tag] = tag if tag.present? + opts = {environment: environment_id(@environment)} + opts[:tag] = @tag if @tag.present? result = apis[:projects].projects_parameters_list(proj_id, **opts) logger.debug do cleaned = result&.to_hash&.deep_dup @@ -151,7 +148,9 @@ def templates(project:) @templates ||= {} @templates[project] ||= begin proj_id = projects[project] - result = apis[:projects].projects_templates_list(proj_id) + opts = {environment: environment_id(@environment)} + opts[:tag] = @tag if @tag.present? + result = apis[:projects].projects_templates_list(proj_id, **opts) logger.debug { "Templates query result: #{result.inspect}" } Hash[result&.results&.collect do |tmpl| # values is keyed by url, but we forced it to only have a single entry @@ -172,11 +171,12 @@ def template_id(template, project:) template_id.to_s end - def template(name, project:, environment: "default") - env_id = environment_id(environment) + def template(name, project:) proj_id = project_id(project) tmpl_id = template_id(name, project: project) - result = apis[:projects].projects_templates_retrieve(tmpl_id, proj_id, environment: env_id) + opts = {environment: environment_id(@environment)} + opts[:tag] = @tag if @tag.present? + result = apis[:projects].projects_templates_retrieve(tmpl_id, proj_id, **opts) body = result&.body logger.debug { result.body = "" if result.has_secret; "Template Retrieve query result: #{result.inspect}" } body diff --git a/lib/kubetruth/etl.rb b/lib/kubetruth/etl.rb index 13a6168..b4909a3 100644 --- a/lib/kubetruth/etl.rb +++ b/lib/kubetruth/etl.rb @@ -168,16 +168,57 @@ def with_log_level(level) end end + class DelayedParameters + + def initialize(project) + @project = project + end + + def params_to_hash(param_list) + Hash[param_list.collect {|param| [param.key, param.value]}] + end + + def params + @param_data ||= begin + # constructing the hash will cause any overrides to happen in the right + # order (includer wins over last included over first included) + params = @project.all_parameters + parts = params.group_by(&:secret) + config_params, secret_params = (parts[false] || []), (parts[true] || []) + config_param_hash = params_to_hash(config_params) + secret_param_hash = params_to_hash(secret_params) + + parameter_origins = @project.parameter_origins + param_origins_parts = parameter_origins.group_by {|k, v| config_param_hash.has_key?(k) } + config_origins = Hash[param_origins_parts[true] || []] + secret_origins = Hash[param_origins_parts[false] || []] + + config_param_hash = config_param_hash.reject do |k, v| + logger.debug { "Excluding parameter with nil value: #{k}" } if v.nil? + v.nil? + end + secret_param_hash = secret_param_hash.reject do |k, v| + logger.debug { "Excluding secret parameter with nil value: #{k}" } if v.nil? + v.nil? + end + + { + parameters: config_param_hash, + parameter_origins: config_origins, + secrets: secret_param_hash, + secret_origins: secret_origins + } + end + end + end + def apply async(annotation: "ETL Event Loop") do logger.warn("Performing dry-run") if @dry_run - # Clear out the cache at the start of each polling cycle - CtApi.reset - load_config do |namespace, config| with_log_level(config.root_spec.log_level) do - project_collection = ProjectCollection.new + project_collection = ProjectCollection.new(config.root_spec) # Load all projects that are used all_specs = [config.root_spec] + config.override_specs @@ -210,27 +251,7 @@ def apply async(annotation: "Project: #{project.name}") do - # constructing the hash will cause any overrides to happen in the right - # order (includer wins over last included over first included) - params = project.all_parameters - parts = params.group_by(&:secret) - config_params, secret_params = (parts[false] || []), (parts[true] || []) - config_param_hash = params_to_hash(config_params) - secret_param_hash = params_to_hash(secret_params) - - parameter_origins = project.parameter_origins - param_origins_parts = parameter_origins.group_by {|k, v| config_param_hash.has_key?(k) } - config_origins = Hash[param_origins_parts[true] || []] - secret_origins = Hash[param_origins_parts[false] || []] - - config_param_hash = config_param_hash.reject do |k, v| - logger.debug { "Excluding parameter with nil value: #{k}" } if v.nil? - v.nil? - end - secret_param_hash = secret_param_hash.reject do |k, v| - logger.debug { "Excluding secret parameter with nil value: #{k}" } if v.nil? - v.nil? - end + param_data = DelayedParameters.new(project) resource_templates = project.spec.templates resource_templates.each_with_index do |pair, i| @@ -243,11 +264,11 @@ def apply project: project.name, project_heirarchy: project.heirarchy, debug: logger.debug?, - parameters: config_param_hash, - parameter_origins: config_origins, - secrets: secret_param_hash, - secret_origins: secret_origins, - templates: Template::TemplatesDrop.new(project: project.name, environment: project.spec.environment), + parameters: proc { param_data.params[:parameters] }, + parameter_origins: proc { param_data.params[:parameter_origins] }, + secrets: proc { param_data.params[:secrets] }, + secret_origins: proc { param_data.params[:secret_origins] }, + templates: Template::TemplatesDrop.new(project: project.name, ctapi: project.ctapi), context: project.spec.context ) @@ -273,10 +294,6 @@ def apply end.wait end - def params_to_hash(param_list) - Hash[param_list.collect {|param| [param.key, param.value]}] - end - def kube_apply(parsed_yml) kind = parsed_yml["kind"] name = parsed_yml["metadata"]["name"] diff --git a/lib/kubetruth/project.rb b/lib/kubetruth/project.rb index 49f1d88..8f8e214 100644 --- a/lib/kubetruth/project.rb +++ b/lib/kubetruth/project.rb @@ -3,9 +3,13 @@ module Kubetruth include GemLogger::LoggerSupport + def ctapi + @ctapi ||= Kubetruth::CtApi.new(environment: spec.environment, tag: spec.tag) + end + def parameters @parameters ||= begin - params = collection.ctapi.parameters(project: name, environment: spec.environment, tag: spec.tag) + params = ctapi.parameters(project: name) logger.debug do cleaned = params.deep_dup cleaned.each {|p| p.value = "" if p.secret} diff --git a/lib/kubetruth/project_collection.rb b/lib/kubetruth/project_collection.rb index c8d949f..fd41a60 100644 --- a/lib/kubetruth/project_collection.rb +++ b/lib/kubetruth/project_collection.rb @@ -7,12 +7,13 @@ class ProjectCollection attr_accessor :projects - def initialize() + def initialize(project_spec) @projects = {} + @project_spec = project_spec end def ctapi - Kubetruth::CtApi.instance + @ctapi ||= Kubetruth::CtApi.new(environment: @project_spec.environment, tag: @project_spec.tag) end def names diff --git a/lib/kubetruth/template.rb b/lib/kubetruth/template.rb index 70b65b0..d93fdc3 100644 --- a/lib/kubetruth/template.rb +++ b/lib/kubetruth/template.rb @@ -38,21 +38,28 @@ def encode_with(coder) coder.represent_map(nil, @source) end + def to_s + Hash[@source.collect {|k, v| [k.to_s, v.to_s]}].to_json + end + + def inspect + to_s + end end class TemplatesDrop < Liquid::Drop - def initialize(project:, environment:) + def initialize(project:, ctapi:) @project = project - @environment = environment + @ctapi = ctapi end def names - CtApi.instance.template_names(project: @project) + @ctapi.template_names(project: @project) end def liquid_method_missing(key) - CtApi.instance.template(key, project: @project, environment: @environment) + @ctapi.template(key, project: @project) end end @@ -241,11 +248,12 @@ def render(*args, **kwargs) begin # TODO: fix secrets hardcoding here - secrets = kwargs[:secrets] || {} + secrets = nil debug_kwargs = nil logger.debug do # TODO: fix secrets hardcoding here + secrets ||= kwargs[:secrets]&.call || {} debug_kwargs ||= kwargs.merge(secrets: Hash[secrets.collect {|k, v| [k, ""] }]) msg = "Evaluating template:\n" @source.to_s.lines.collect {|l| msg << (INDENT * 2) << l } @@ -257,6 +265,7 @@ def render(*args, **kwargs) result = @liquid.render!(*args, kwargs.stringify_keys, strict_variables: true, strict_filters: true) logger.debug do + secrets ||= kwargs[:secrets]&.call || {} debug_kwargs ||= kwargs.merge(secrets: Hash[secrets.collect {|k, v| [k, ""] }]) # we only ever have to sub base64 encoded in this debug block both_secrets = secrets.merge(Hash[secrets.collect {|k, v| ["#{k}_base64", Base64.strict_encode64(v)]}]) @@ -284,6 +293,7 @@ def render(*args, **kwargs) msg << (INDENT * 2) << e.message << "\n" if e.is_a?(Liquid::UndefinedVariable) msg << INDENT << "and variable context:\n" + secrets ||= kwargs[:secrets]&.call || {} debug_kwargs ||= kwargs.merge(secrets: Hash[secrets.collect {|k, v| [k, ""] }]) debug_kwargs.deep_stringify_keys.to_yaml.lines.collect {|l| msg << (INDENT * 2) << l } end @@ -297,6 +307,10 @@ def to_s @source end + def inspect + to_s + end + def encode_with(coder) coder.represent_scalar(nil, @source) end diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/gets_id.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/gets_id.yml index e59a5e7..bb7ba96 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/gets_id.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/gets_id.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://api.cloudtruth.io/api/v1/environments/ + uri: https://api.staging.cloudtruth.io/api/v1/environments/ body: encoding: US-ASCII string: '' @@ -10,7 +10,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -23,25 +23,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:38:08 GMT + - Fri, 07 Oct 2022 15:25:04 GMT Content-Type: - application/json Content-Length: - - '4139' + - '2085' Connection: - keep-alive Set-Cookie: - - AWSALB=nM73w0Dn3rSye+jkVmlaVE1Zs0CFtAQEzeKr5/vlg1gs9+32N6v7XjNGp869hp27URd4XGS/DpqSaUdGPojDHSdscl70EJmJvbBV5txCXf71nBHYmln9aOtWugXG; - Expires=Tue, 11 Jan 2022 17:38:08 GMT; Path=/ - - AWSALBCORS=nM73w0Dn3rSye+jkVmlaVE1Zs0CFtAQEzeKr5/vlg1gs9+32N6v7XjNGp869hp27URd4XGS/DpqSaUdGPojDHSdscl70EJmJvbBV5txCXf71nBHYmln9aOtWugXG; - Expires=Tue, 11 Jan 2022 17:38:08 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=me/00O1kFlv62SJAzmo0fkm1CbIVafVtohQ45VNnjL8OCsaVTSvjWEW9da4KRCPFYYXL03Rpp4ZluxrlHPMoJEWQoyZUoQlJLGBK4DZDkuEAJtr9WR4HnDq4g1j5LYR8G7YT4NTDxYrcPC2DsKT5ST4kF+iN7VblBH913pWCGSr3; - Expires=Tue, 11 Jan 2022 17:38:08 GMT; Path=/ - - AWSALBTGCORS=me/00O1kFlv62SJAzmo0fkm1CbIVafVtohQ45VNnjL8OCsaVTSvjWEW9da4KRCPFYYXL03Rpp4ZluxrlHPMoJEWQoyZUoQlJLGBK4DZDkuEAJtr9WR4HnDq4g1j5LYR8G7YT4NTDxYrcPC2DsKT5ST4kF+iN7VblBH913pWCGSr3; - Expires=Tue, 11 Jan 2022 17:38:08 GMT; Path=/; SameSite=None; Secure - - csrftoken=F8qSgah0dlBsbfD5xxLOBhq3oXVFYzwjvp8Sdc1rffDNSBrEuTAhlv967olkDfN1; - expires=Tue, 03 Jan 2023 17:38:08 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=ll9ipb30gn4sfeuprqacq3w8wzox1384; expires=Tue, 18 Jan 2022 17:38:08 + - AWSALB=oXHcHp65RfbAFgLoxqe5HKiAaLeIEh2YW91KmRDEQ01uZcZ7NVUa0yYbGkGfuxrlIAEHtt7lejJXNAHri69Al05h3GgZvIOz4ZgW8CWtw3ubvNgU8QgWV5Kl6xj3; + Expires=Fri, 14 Oct 2022 15:25:02 GMT; Path=/ + - AWSALBCORS=oXHcHp65RfbAFgLoxqe5HKiAaLeIEh2YW91KmRDEQ01uZcZ7NVUa0yYbGkGfuxrlIAEHtt7lejJXNAHri69Al05h3GgZvIOz4ZgW8CWtw3ubvNgU8QgWV5Kl6xj3; + Expires=Fri, 14 Oct 2022 15:25:02 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=zxgrigZoiWq/TDWWwvuQiOywPIqMrvTvUjDwxbAHlkPLLISzbl6GSdJ3wmoqF6jc45RBk9Co4hun/lFiavtTl8kDw5/shaBu9f7uFbOdUmw8agHSgtgz/PptvNzfzYgVQRg1uQLBlO2h/ac2jjPLnPiyTm3WUWzfdGFG4J4Xewge; + Expires=Fri, 14 Oct 2022 15:25:02 GMT; Path=/ + - AWSALBTGCORS=zxgrigZoiWq/TDWWwvuQiOywPIqMrvTvUjDwxbAHlkPLLISzbl6GSdJ3wmoqF6jc45RBk9Co4hun/lFiavtTl8kDw5/shaBu9f7uFbOdUmw8agHSgtgz/PptvNzfzYgVQRg1uQLBlO2h/ac2jjPLnPiyTm3WUWzfdGFG4J4Xewge; + Expires=Fri, 14 Oct 2022 15:25:02 GMT; Path=/; SameSite=None; Secure + - csrftoken=3ul9lhcet4sD4I8dAkPQFVPjZsoyCihyvtWCmXneWVDBcw3ZjtIcSPo6eWoNcVRE; + expires=Fri, 06 Oct 2023 15:25:04 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=lizpeeujjqjqz659kpcmn47syqvu8els; expires=Fri, 21 Oct 2022 15:25:04 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -59,11 +59,10 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":9,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","id":"e8bc190d-0354-4e66-91c9-64501e501ec5","name":"default","description":"The - auto-generated default environment.","parent":null,"children":["https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/"],"created_at":"2021-07-20T18:14:09.023022Z","modified_at":"2022-01-04T16:21:07.776080Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","id":"c4de304d-5dd4-4a41-80ec-9a469f1aa4f5","name":"development","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/"],"created_at":"2021-07-20T18:14:09.035255Z","modified_at":"2021-12-16T15:31:23.134785Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/","id":"12b9c81b-9002-423b-9ca7-22cece646d07","name":"dev-matt","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","children":[],"created_at":"2021-07-21T19:53:37.534082Z","modified_at":"2021-07-26T22:01:23.472634Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","id":"2281d9da-8376-4f45-baf2-372a71260dfa","name":"europe","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T19:53:47.438517Z","modified_at":"2021-07-26T22:01:29.331661Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","id":"c99d6ab9-4674-4f76-bb43-da0b19124e18","name":"local","description":"for - local development","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T19:53:50.000541Z","modified_at":"2021-07-26T22:01:32.150839Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","id":"ef133a2e-3c9c-4229-a509-e56332baff40","name":"ops","description":"The - ops environment - infrastructure that acts as the entry point to the other - environment''s infrastructure","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T20:05:10.325110Z","modified_at":"2021-07-26T22:01:35.184068Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","id":"cde7cf9d-8bf2-46cb-9e97-dee9b99e4335","name":"production","description":"for - real","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/"],"created_at":"2021-07-20T18:14:09.058957Z","modified_at":"2021-10-26T18:14:38.859067Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/","id":"e4399ff4-a962-451b-adfb-7e504ad6bb6d","name":"staging","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-20T18:14:09.047049Z","modified_at":"2021-07-26T18:46:21.385162Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/","id":"3afc0523-4722-4fa1-aaea-5d49beaa284d","name":"usa","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T20:05:24.767679Z","modified_at":"2021-07-26T18:44:51.186840Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:38:08 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","id":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","name":"default","description":"Default + environment, base for all environments.","parent":null,"children":["https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/"],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.112161Z","modified_at":"2022-06-02T17:13:09.641786Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","id":"8f2e37b9-b429-4987-bb85-abd24bd67274","name":"development","description":"Development + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.123839Z","modified_at":"2022-06-02T17:11:55.123839Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","id":"0663ac09-5883-452b-bc1a-00e3347fece5","name":"production","description":"Production + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.145580Z","modified_at":"2022-06-02T17:11:55.145580Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/","id":"fc970cc2-c24f-427d-9c7a-70acde9f1b64","name":"staging","description":"Staging + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.134547Z","modified_at":"2022-06-02T17:11:55.134547Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:25:04 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/raises_if_environment_doesn_t_exist.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/raises_if_environment_doesn_t_exist.yml index 3e133a3..153654a 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/raises_if_environment_doesn_t_exist.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/raises_if_environment_doesn_t_exist.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://api.cloudtruth.io/api/v1/environments/ + uri: https://api.staging.cloudtruth.io/api/v1/environments/ body: encoding: US-ASCII string: '' @@ -10,7 +10,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -23,25 +23,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:38:08 GMT + - Fri, 07 Oct 2022 15:25:06 GMT Content-Type: - application/json Content-Length: - - '4139' + - '2085' Connection: - keep-alive Set-Cookie: - - AWSALB=NL79mcEadPWqQLLCOJ6w1rQ6uz9NMf8w5haWcv0AsNZeUFvfh4746nLMDBQngwNMkhyLH3dxe7bAqR0YwUANHJMxFzVPw2PuM9sqtm8YeTbMmMznPK+Db8Ku9oZU; - Expires=Tue, 11 Jan 2022 17:38:08 GMT; Path=/ - - AWSALBCORS=NL79mcEadPWqQLLCOJ6w1rQ6uz9NMf8w5haWcv0AsNZeUFvfh4746nLMDBQngwNMkhyLH3dxe7bAqR0YwUANHJMxFzVPw2PuM9sqtm8YeTbMmMznPK+Db8Ku9oZU; - Expires=Tue, 11 Jan 2022 17:38:08 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=bMayu452CeXVtdWUa5U3fdkMykbxxaWmOM2NorECrAGIKjRu+6thSnA0+MpKSyY6D0KeG2tkKYlxlht43fWqdRjl71LbyYtPy5cglIGZ5hon3W4MWgfcgFjpPz2tCr7V2f+Was1bXSY1MpfQz0J27o1P6LUKwLqDPSr+yLlyOxh3; - Expires=Tue, 11 Jan 2022 17:38:08 GMT; Path=/ - - AWSALBTGCORS=bMayu452CeXVtdWUa5U3fdkMykbxxaWmOM2NorECrAGIKjRu+6thSnA0+MpKSyY6D0KeG2tkKYlxlht43fWqdRjl71LbyYtPy5cglIGZ5hon3W4MWgfcgFjpPz2tCr7V2f+Was1bXSY1MpfQz0J27o1P6LUKwLqDPSr+yLlyOxh3; - Expires=Tue, 11 Jan 2022 17:38:08 GMT; Path=/; SameSite=None; Secure - - csrftoken=ZUn4pQiabt9bYRYpFyFHdqvReHkRmG6J3KZ3vYxq2LIZHaYFn8Nc1V51nAzHR7aF; - expires=Tue, 03 Jan 2023 17:38:08 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=vxfbxgxt1y8b6fbicwiti7sgui7gs6lm; expires=Tue, 18 Jan 2022 17:38:08 + - AWSALB=IKfwRlG4AQjvcdsxhgkLOVjcV3PHXj1NJLlbbT469jNeTnrEh8YQPCQx6O8hL0207+nfrRAP/H+/lE9/9agn1etxN1U2Fk/W2hJlu+XzL3gUehVIX6b9YXZ+o8G0; + Expires=Fri, 14 Oct 2022 15:25:05 GMT; Path=/ + - AWSALBCORS=IKfwRlG4AQjvcdsxhgkLOVjcV3PHXj1NJLlbbT469jNeTnrEh8YQPCQx6O8hL0207+nfrRAP/H+/lE9/9agn1etxN1U2Fk/W2hJlu+XzL3gUehVIX6b9YXZ+o8G0; + Expires=Fri, 14 Oct 2022 15:25:05 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=BFgV2Up/2x+w3xM+gk70OD37Ust3Ukthj1NMHSqDEsuIXI/t8m5IG4JZiOCwX9z+yZx5N/evUrwgtivOG6OBflAnav7cTCnLyFr3n8eg8GFhVVkPHAJrdWrMZYuOXzxEx8co9Nn+Tn9irFqs4eC+1UGwrEeCd5Nh2L5jLWnV1kua; + Expires=Fri, 14 Oct 2022 15:25:05 GMT; Path=/ + - AWSALBTGCORS=BFgV2Up/2x+w3xM+gk70OD37Ust3Ukthj1NMHSqDEsuIXI/t8m5IG4JZiOCwX9z+yZx5N/evUrwgtivOG6OBflAnav7cTCnLyFr3n8eg8GFhVVkPHAJrdWrMZYuOXzxEx8co9Nn+Tn9irFqs4eC+1UGwrEeCd5Nh2L5jLWnV1kua; + Expires=Fri, 14 Oct 2022 15:25:05 GMT; Path=/; SameSite=None; Secure + - csrftoken=37zkFRo6X25RyO1z94mvo9e2PAl8RvefZKW6IwaDhB6tA9STUUSuUVEDPQFen8fO; + expires=Fri, 06 Oct 2023 15:25:06 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=rmumecm4en00jda6b1jyutnj3kejs12k; expires=Fri, 21 Oct 2022 15:25:06 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -59,11 +59,10 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":9,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","id":"e8bc190d-0354-4e66-91c9-64501e501ec5","name":"default","description":"The - auto-generated default environment.","parent":null,"children":["https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/"],"created_at":"2021-07-20T18:14:09.023022Z","modified_at":"2022-01-04T16:21:07.776080Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","id":"c4de304d-5dd4-4a41-80ec-9a469f1aa4f5","name":"development","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/"],"created_at":"2021-07-20T18:14:09.035255Z","modified_at":"2021-12-16T15:31:23.134785Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/","id":"12b9c81b-9002-423b-9ca7-22cece646d07","name":"dev-matt","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","children":[],"created_at":"2021-07-21T19:53:37.534082Z","modified_at":"2021-07-26T22:01:23.472634Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","id":"2281d9da-8376-4f45-baf2-372a71260dfa","name":"europe","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T19:53:47.438517Z","modified_at":"2021-07-26T22:01:29.331661Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","id":"c99d6ab9-4674-4f76-bb43-da0b19124e18","name":"local","description":"for - local development","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T19:53:50.000541Z","modified_at":"2021-07-26T22:01:32.150839Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","id":"ef133a2e-3c9c-4229-a509-e56332baff40","name":"ops","description":"The - ops environment - infrastructure that acts as the entry point to the other - environment''s infrastructure","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T20:05:10.325110Z","modified_at":"2021-07-26T22:01:35.184068Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","id":"cde7cf9d-8bf2-46cb-9e97-dee9b99e4335","name":"production","description":"for - real","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/"],"created_at":"2021-07-20T18:14:09.058957Z","modified_at":"2021-10-26T18:14:38.859067Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/","id":"e4399ff4-a962-451b-adfb-7e504ad6bb6d","name":"staging","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-20T18:14:09.047049Z","modified_at":"2021-07-26T18:46:21.385162Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/","id":"3afc0523-4722-4fa1-aaea-5d49beaa284d","name":"usa","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T20:05:24.767679Z","modified_at":"2021-07-26T18:44:51.186840Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:38:08 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","id":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","name":"default","description":"Default + environment, base for all environments.","parent":null,"children":["https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/"],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.112161Z","modified_at":"2022-06-02T17:13:09.641786Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","id":"8f2e37b9-b429-4987-bb85-abd24bd67274","name":"development","description":"Development + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.123839Z","modified_at":"2022-06-02T17:11:55.123839Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","id":"0663ac09-5883-452b-bc1a-00e3347fece5","name":"production","description":"Production + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.145580Z","modified_at":"2022-06-02T17:11:55.145580Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/","id":"fc970cc2-c24f-427d-9c7a-70acde9f1b64","name":"staging","description":"Staging + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.134547Z","modified_at":"2022-06-02T17:11:55.134547Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:25:06 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_environments/gets_environments.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_environments/gets_environments.yml index fc89410..e26bc79 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_environments/gets_environments.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_environments/gets_environments.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://api.cloudtruth.io/api/v1/environments/ + uri: https://api.staging.cloudtruth.io/api/v1/environments/ body: encoding: US-ASCII string: '' @@ -10,7 +10,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -23,25 +23,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:38:07 GMT + - Fri, 07 Oct 2022 15:25:01 GMT Content-Type: - application/json Content-Length: - - '4139' + - '2085' Connection: - keep-alive Set-Cookie: - - AWSALB=Eu//OoaTZ8QY4rY01u78fa89fy/76Cl6bOpQNBn7+8m8m+rIyagTiXObYgJlk4xdLonszvMxurPXs/UiWbdd1kbn7NxsXU5UMX/ytIrdRox2jVB4YvXJzWiClFM9; - Expires=Tue, 11 Jan 2022 17:38:06 GMT; Path=/ - - AWSALBCORS=Eu//OoaTZ8QY4rY01u78fa89fy/76Cl6bOpQNBn7+8m8m+rIyagTiXObYgJlk4xdLonszvMxurPXs/UiWbdd1kbn7NxsXU5UMX/ytIrdRox2jVB4YvXJzWiClFM9; - Expires=Tue, 11 Jan 2022 17:38:06 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=Mn/fyzmDg9+0dt+a3yfPboFdjolCpxml7IWQ3ISvyBA6PLlcFVgc4QzYrsXia68wKDppyKwIY0j1y8KejG37csQ4ew/s9dbtq3IxTndy4CxB4MtqzH6PjElp3c3uQlAdyIj0NL5RwrYQ9Z5GuTTi137LyhU2Cpu0cHqXprRcQb1V; - Expires=Tue, 11 Jan 2022 17:38:06 GMT; Path=/ - - AWSALBTGCORS=Mn/fyzmDg9+0dt+a3yfPboFdjolCpxml7IWQ3ISvyBA6PLlcFVgc4QzYrsXia68wKDppyKwIY0j1y8KejG37csQ4ew/s9dbtq3IxTndy4CxB4MtqzH6PjElp3c3uQlAdyIj0NL5RwrYQ9Z5GuTTi137LyhU2Cpu0cHqXprRcQb1V; - Expires=Tue, 11 Jan 2022 17:38:06 GMT; Path=/; SameSite=None; Secure - - csrftoken=ZVqxy05i3Bfw4uQrWvoXjbQ1PdlAhHJaoOVMdtRfAYLu6S2WmdYf5dO4FpKy07Ta; - expires=Tue, 03 Jan 2023 17:38:07 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=m6trowh0wam7frx5q9tyuec8gjdt2wer; expires=Tue, 18 Jan 2022 17:38:07 + - AWSALB=6D1lczcxVgy7UsxcLxWXEz0zvWodtOrshAqKu02l3KRyW2ccheeuZwrmyOPvKBhqHR/TeqwYAF6NE5+V2Hxn3kIoetMYzuknyjLKYAllYqLQTtjCTgIgvRXeKjqk; + Expires=Fri, 14 Oct 2022 15:24:57 GMT; Path=/ + - AWSALBCORS=6D1lczcxVgy7UsxcLxWXEz0zvWodtOrshAqKu02l3KRyW2ccheeuZwrmyOPvKBhqHR/TeqwYAF6NE5+V2Hxn3kIoetMYzuknyjLKYAllYqLQTtjCTgIgvRXeKjqk; + Expires=Fri, 14 Oct 2022 15:24:57 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=llDtmQUbUJqZFh4deLYh2IzlfY1pcHNfmsgG7IIZkOkIJLvsxBgwCN9qR2HjmkWtW5i/hLZV4Yqf9HpYhnQJcs8spu/tY61EBsXIt5SUnqmlGtHbwRjbi92Pw5lQ/Yv8L2tEewMThdiPnhg8/zu/4PWeLIspPkaknNAHgTmUQ5gX; + Expires=Fri, 14 Oct 2022 15:24:57 GMT; Path=/ + - AWSALBTGCORS=llDtmQUbUJqZFh4deLYh2IzlfY1pcHNfmsgG7IIZkOkIJLvsxBgwCN9qR2HjmkWtW5i/hLZV4Yqf9HpYhnQJcs8spu/tY61EBsXIt5SUnqmlGtHbwRjbi92Pw5lQ/Yv8L2tEewMThdiPnhg8/zu/4PWeLIspPkaknNAHgTmUQ5gX; + Expires=Fri, 14 Oct 2022 15:24:57 GMT; Path=/; SameSite=None; Secure + - csrftoken=OrTpMmDOosXkLo08LELNRwnKrtCvjON3wUwcE6o8yUpMh5QZ2yqJ1SzPDN18mMie; + expires=Fri, 06 Oct 2023 15:25:01 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=kw173d5yrga6ukw5h8d07a2pxuppht2v; expires=Fri, 21 Oct 2022 15:25:01 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -59,11 +59,10 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":9,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","id":"e8bc190d-0354-4e66-91c9-64501e501ec5","name":"default","description":"The - auto-generated default environment.","parent":null,"children":["https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/"],"created_at":"2021-07-20T18:14:09.023022Z","modified_at":"2022-01-04T16:21:07.776080Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","id":"c4de304d-5dd4-4a41-80ec-9a469f1aa4f5","name":"development","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/"],"created_at":"2021-07-20T18:14:09.035255Z","modified_at":"2021-12-16T15:31:23.134785Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/","id":"12b9c81b-9002-423b-9ca7-22cece646d07","name":"dev-matt","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","children":[],"created_at":"2021-07-21T19:53:37.534082Z","modified_at":"2021-07-26T22:01:23.472634Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","id":"2281d9da-8376-4f45-baf2-372a71260dfa","name":"europe","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T19:53:47.438517Z","modified_at":"2021-07-26T22:01:29.331661Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","id":"c99d6ab9-4674-4f76-bb43-da0b19124e18","name":"local","description":"for - local development","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T19:53:50.000541Z","modified_at":"2021-07-26T22:01:32.150839Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","id":"ef133a2e-3c9c-4229-a509-e56332baff40","name":"ops","description":"The - ops environment - infrastructure that acts as the entry point to the other - environment''s infrastructure","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T20:05:10.325110Z","modified_at":"2021-07-26T22:01:35.184068Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","id":"cde7cf9d-8bf2-46cb-9e97-dee9b99e4335","name":"production","description":"for - real","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/"],"created_at":"2021-07-20T18:14:09.058957Z","modified_at":"2021-10-26T18:14:38.859067Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/","id":"e4399ff4-a962-451b-adfb-7e504ad6bb6d","name":"staging","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-20T18:14:09.047049Z","modified_at":"2021-07-26T18:46:21.385162Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/","id":"3afc0523-4722-4fa1-aaea-5d49beaa284d","name":"usa","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T20:05:24.767679Z","modified_at":"2021-07-26T18:44:51.186840Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:38:07 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","id":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","name":"default","description":"Default + environment, base for all environments.","parent":null,"children":["https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/"],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.112161Z","modified_at":"2022-06-02T17:13:09.641786Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","id":"8f2e37b9-b429-4987-bb85-abd24bd67274","name":"development","description":"Development + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.123839Z","modified_at":"2022-06-02T17:11:55.123839Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","id":"0663ac09-5883-452b-bc1a-00e3347fece5","name":"production","description":"Production + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.145580Z","modified_at":"2022-06-02T17:11:55.145580Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/","id":"fc970cc2-c24f-427d-9c7a-70acde9f1b64","name":"staging","description":"Staging + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.134547Z","modified_at":"2022-06-02T17:11:55.134547Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:25:01 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_environments/memoizes_environments.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_environments/memoizes_environments.yml index 7ac8d01..fe4492b 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_environments/memoizes_environments.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_environments/memoizes_environments.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://api.cloudtruth.io/api/v1/environments/ + uri: https://api.staging.cloudtruth.io/api/v1/environments/ body: encoding: US-ASCII string: '' @@ -10,7 +10,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -23,25 +23,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:38:07 GMT + - Fri, 07 Oct 2022 15:25:02 GMT Content-Type: - application/json Content-Length: - - '4139' + - '2085' Connection: - keep-alive Set-Cookie: - - AWSALB=1Hhr/TQxTTBzoShE/GgeKU/xKyWkBJgLY/97u7YUC9SIUPWesw6vu2OhWGWpd4vWfsgHj0EExgKGzFUtcHGIZ00s5JZAzZM7IXGuZpNNisHiH8JoFfTI/sCm2iID; - Expires=Tue, 11 Jan 2022 17:38:07 GMT; Path=/ - - AWSALBCORS=1Hhr/TQxTTBzoShE/GgeKU/xKyWkBJgLY/97u7YUC9SIUPWesw6vu2OhWGWpd4vWfsgHj0EExgKGzFUtcHGIZ00s5JZAzZM7IXGuZpNNisHiH8JoFfTI/sCm2iID; - Expires=Tue, 11 Jan 2022 17:38:07 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=wVllnAxuoUJrR2avG/9WAJ0fQoZxp/VCWfy5mSkCShQSiDChXC7hJ9kKVPXcNiPwgb2+K6BQe54OZkk8ZV7l13O8RNqEp3adBXs10gWyg7lgh7LzPaa9ltrz4tGNeIkekievaB2sYBx7ml9lBgKsohs4UZOM4gBpw/9ufWI36eCX; - Expires=Tue, 11 Jan 2022 17:38:07 GMT; Path=/ - - AWSALBTGCORS=wVllnAxuoUJrR2avG/9WAJ0fQoZxp/VCWfy5mSkCShQSiDChXC7hJ9kKVPXcNiPwgb2+K6BQe54OZkk8ZV7l13O8RNqEp3adBXs10gWyg7lgh7LzPaa9ltrz4tGNeIkekievaB2sYBx7ml9lBgKsohs4UZOM4gBpw/9ufWI36eCX; - Expires=Tue, 11 Jan 2022 17:38:07 GMT; Path=/; SameSite=None; Secure - - csrftoken=JHjs2vFuVtu6Z7hm2a2i9ssgRLMItdKesZdtlrYnXrgmP8mtGoBDpDPiBdkucuGR; - expires=Tue, 03 Jan 2023 17:38:07 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=owr0ls4b0tt1w3orje3qog0gvp88bwjj; expires=Tue, 18 Jan 2022 17:38:07 + - AWSALB=uCEbaf4FGM8/7lANxsIMdXf86Q8uHTnK5sA8F2ha7SJvGymQRh81GVRWgfvx09/45jEvkZ9O0HhYiREsb7F0AZmxbh5h9YTMNFCwruB8HwaLFlPqMpYwTzXpQYEi; + Expires=Fri, 14 Oct 2022 15:25:01 GMT; Path=/ + - AWSALBCORS=uCEbaf4FGM8/7lANxsIMdXf86Q8uHTnK5sA8F2ha7SJvGymQRh81GVRWgfvx09/45jEvkZ9O0HhYiREsb7F0AZmxbh5h9YTMNFCwruB8HwaLFlPqMpYwTzXpQYEi; + Expires=Fri, 14 Oct 2022 15:25:01 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=pPSiW9c17TE+5un5Mj5PNam84xI7/8JfyRm2m/bnAbAcrCTI20/SfZtd9ABW1MqSHufhjqCrl1UqFzs7Y1sdAAiwg8hrDzoxNTjZVrnWGNgn77ADq2eVhHOwblTV0wPO1RlJaySoUuKrm2pRAtGnFCPnDJEoVYu9MQs2u9bgw5kN; + Expires=Fri, 14 Oct 2022 15:25:01 GMT; Path=/ + - AWSALBTGCORS=pPSiW9c17TE+5un5Mj5PNam84xI7/8JfyRm2m/bnAbAcrCTI20/SfZtd9ABW1MqSHufhjqCrl1UqFzs7Y1sdAAiwg8hrDzoxNTjZVrnWGNgn77ADq2eVhHOwblTV0wPO1RlJaySoUuKrm2pRAtGnFCPnDJEoVYu9MQs2u9bgw5kN; + Expires=Fri, 14 Oct 2022 15:25:01 GMT; Path=/; SameSite=None; Secure + - csrftoken=5PsKK4dPNFWlDPuv0vqSuPqviiVdsHJKGpfiCK4gN0ahmckG5BowKtStXP7j82rv; + expires=Fri, 06 Oct 2023 15:25:02 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=k70f7o9ota37om5w1lm0y8di4cw3w5uc; expires=Fri, 21 Oct 2022 15:25:02 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -59,11 +59,10 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":9,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","id":"e8bc190d-0354-4e66-91c9-64501e501ec5","name":"default","description":"The - auto-generated default environment.","parent":null,"children":["https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/"],"created_at":"2021-07-20T18:14:09.023022Z","modified_at":"2022-01-04T16:21:07.776080Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","id":"c4de304d-5dd4-4a41-80ec-9a469f1aa4f5","name":"development","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/"],"created_at":"2021-07-20T18:14:09.035255Z","modified_at":"2021-12-16T15:31:23.134785Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/","id":"12b9c81b-9002-423b-9ca7-22cece646d07","name":"dev-matt","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","children":[],"created_at":"2021-07-21T19:53:37.534082Z","modified_at":"2021-07-26T22:01:23.472634Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","id":"2281d9da-8376-4f45-baf2-372a71260dfa","name":"europe","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T19:53:47.438517Z","modified_at":"2021-07-26T22:01:29.331661Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","id":"c99d6ab9-4674-4f76-bb43-da0b19124e18","name":"local","description":"for - local development","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T19:53:50.000541Z","modified_at":"2021-07-26T22:01:32.150839Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","id":"ef133a2e-3c9c-4229-a509-e56332baff40","name":"ops","description":"The - ops environment - infrastructure that acts as the entry point to the other - environment''s infrastructure","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T20:05:10.325110Z","modified_at":"2021-07-26T22:01:35.184068Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","id":"cde7cf9d-8bf2-46cb-9e97-dee9b99e4335","name":"production","description":"for - real","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/"],"created_at":"2021-07-20T18:14:09.058957Z","modified_at":"2021-10-26T18:14:38.859067Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/","id":"e4399ff4-a962-451b-adfb-7e504ad6bb6d","name":"staging","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-20T18:14:09.047049Z","modified_at":"2021-07-26T18:46:21.385162Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/","id":"3afc0523-4722-4fa1-aaea-5d49beaa284d","name":"usa","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T20:05:24.767679Z","modified_at":"2021-07-26T18:44:51.186840Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:38:07 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","id":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","name":"default","description":"Default + environment, base for all environments.","parent":null,"children":["https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/"],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.112161Z","modified_at":"2022-06-02T17:13:09.641786Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","id":"8f2e37b9-b429-4987-bb85-abd24bd67274","name":"development","description":"Development + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.123839Z","modified_at":"2022-06-02T17:11:55.123839Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","id":"0663ac09-5883-452b-bc1a-00e3347fece5","name":"production","description":"Production + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.145580Z","modified_at":"2022-06-02T17:11:55.145580Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/","id":"fc970cc2-c24f-427d-9c7a-70acde9f1b64","name":"staging","description":"Staging + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.134547Z","modified_at":"2022-06-02T17:11:55.134547Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:25:02 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml index 684ff98..2b08574 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -10,7 +10,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -23,25 +23,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:34:13 GMT + - Fri, 07 Oct 2022 15:26:30 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=wUBUotEaAo65KVfWrOU+uGK/AzAniXL/RQt8Fcl1u/b5s5dbBLuSkfNSqfvp27lkrJWhGdZZvYYAuCGO7/hFNG7zLQMZUd5k2wlGuaDWWH2u39M4SeLSf1Y6SG/E; - Expires=Tue, 11 Jan 2022 19:34:13 GMT; Path=/ - - AWSALBCORS=wUBUotEaAo65KVfWrOU+uGK/AzAniXL/RQt8Fcl1u/b5s5dbBLuSkfNSqfvp27lkrJWhGdZZvYYAuCGO7/hFNG7zLQMZUd5k2wlGuaDWWH2u39M4SeLSf1Y6SG/E; - Expires=Tue, 11 Jan 2022 19:34:13 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=a2G2YNy1cmjqn/OBf/vBWNK0Tiqq5OK10KARDYQfDpHRuONqVK1IfNIcLMM41BU32DG7Z6xjJS9+x0htTxkUxTI+AgbTrX5J8J+0nmKcUVzLgx6oqyu0LPbQOTroHK89wbluWByYP3wY8sc/LOb22VGHzYMSr25EzZ8LGHdq2ZYD; - Expires=Tue, 11 Jan 2022 19:34:13 GMT; Path=/ - - AWSALBTGCORS=a2G2YNy1cmjqn/OBf/vBWNK0Tiqq5OK10KARDYQfDpHRuONqVK1IfNIcLMM41BU32DG7Z6xjJS9+x0htTxkUxTI+AgbTrX5J8J+0nmKcUVzLgx6oqyu0LPbQOTroHK89wbluWByYP3wY8sc/LOb22VGHzYMSr25EzZ8LGHdq2ZYD; - Expires=Tue, 11 Jan 2022 19:34:13 GMT; Path=/; SameSite=None; Secure - - csrftoken=Isn5hSVMegpU2MgKC4MphMnOISD2YGQtjfrQLJohlmqIcG1gfJtk8intqtsjdiva; - expires=Tue, 03 Jan 2023 19:34:13 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=wcmnbpse3msuswvmkbuofnqg4pz55kcx; expires=Tue, 18 Jan 2022 19:34:13 + - AWSALB=TQ/A6t65zylSbiFx4NzYtdxqx+JJM/Qp/x+E8YoG/dRWIRpnfUm9GFfybYAPa9P/PizZaZJBSU7xda/sZ3213w25kuzO14BXXIFoNzKGc9oRhu1FQ2wQ4phoSem+; + Expires=Fri, 14 Oct 2022 15:26:29 GMT; Path=/ + - AWSALBCORS=TQ/A6t65zylSbiFx4NzYtdxqx+JJM/Qp/x+E8YoG/dRWIRpnfUm9GFfybYAPa9P/PizZaZJBSU7xda/sZ3213w25kuzO14BXXIFoNzKGc9oRhu1FQ2wQ4phoSem+; + Expires=Fri, 14 Oct 2022 15:26:29 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=l8rbpk/RrRUarSC9Try2fOPuGh/X31LtZeCu9LbcBDJwQEUp/TBxI5uP/qgaC/W6RCMp4cVZqmhGtjfiSzd9C768SvwigsJZTvM7/2sfrm6O03pwaxmEIs3eCtuhLx8JSd4tpCCyFoXTQbtsrlbxWB2+IthRb8VqqxX7DRAZ5TfC; + Expires=Fri, 14 Oct 2022 15:26:29 GMT; Path=/ + - AWSALBTGCORS=l8rbpk/RrRUarSC9Try2fOPuGh/X31LtZeCu9LbcBDJwQEUp/TBxI5uP/qgaC/W6RCMp4cVZqmhGtjfiSzd9C768SvwigsJZTvM7/2sfrm6O03pwaxmEIs3eCtuhLx8JSd4tpCCyFoXTQbtsrlbxWB2+IthRb8VqqxX7DRAZ5TfC; + Expires=Fri, 14 Oct 2022 15:26:29 GMT; Path=/; SameSite=None; Secure + - csrftoken=jxxnrlXhfjQRa359SEMA4pzB93yp0AmGyo0YmmS1VCUWNPcHDdNjlRJL5RcbwbyV; + expires=Fri, 06 Oct 2023 15:26:30 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=mgmy5lhynmu001wd995gbaf4tj1w2fcm; expires=Fri, 21 Oct 2022 15:26:30 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -59,23 +59,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a663c4ae-7bb8-4806-9b3b-b960bc076a90/","id":"a663c4ae-7bb8-4806-9b3b-b960bc076a90","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T19:34:05.285677Z","modified_at":"2022-01-04T19:34:11.679494Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 19:34:13 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/","id":"0c512ad6-b6c0-4363-956e-5b9074640ef4","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:26:03.232573Z","modified_at":"2022-10-07T15:26:03.232573Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:26:30 GMT - request: method: delete - uri: https://api.cloudtruth.io/api/v1/projects/a663c4ae-7bb8-4806-9b3b-b960bc076a90/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/ body: encoding: US-ASCII string: '' @@ -83,7 +72,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Authorization: - Api-Key Accept-Encoding: @@ -96,23 +85,23 @@ http_interactions: message: No Content headers: Date: - - Tue, 04 Jan 2022 19:34:14 GMT + - Fri, 07 Oct 2022 15:26:32 GMT Content-Length: - '0' Connection: - keep-alive Set-Cookie: - - AWSALB=dwVJo8NRY/iTRoFr5lmNv4FKOjuT7LJ7zseTRg5mKEzzMFOczFNkXOdof1keNjtQoMyobsYdJOSkiM2zL3xPSq3C4RNbyL/IgoIRAInf/FYxZtcFRP76/Ej+OFpO; - Expires=Tue, 11 Jan 2022 19:34:13 GMT; Path=/ - - AWSALBCORS=dwVJo8NRY/iTRoFr5lmNv4FKOjuT7LJ7zseTRg5mKEzzMFOczFNkXOdof1keNjtQoMyobsYdJOSkiM2zL3xPSq3C4RNbyL/IgoIRAInf/FYxZtcFRP76/Ej+OFpO; - Expires=Tue, 11 Jan 2022 19:34:13 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=xqUm7ofTFV0Qe3eixDpkCHUv5G6z4k4bS3rEOhCVDPtLFcrpSlvKnH7x8fZISBZWE4IemV41asGhwkv9xrYOO+jk52BXJBXAUUnvgiVQzXgEZfEFpm4a7i3+BQLOTbDM3kqnKVjzkYeT2qLrAUbSBumLnQGJSvzufZ60ebxPn7FQ; - Expires=Tue, 11 Jan 2022 19:34:13 GMT; Path=/ - - AWSALBTGCORS=xqUm7ofTFV0Qe3eixDpkCHUv5G6z4k4bS3rEOhCVDPtLFcrpSlvKnH7x8fZISBZWE4IemV41asGhwkv9xrYOO+jk52BXJBXAUUnvgiVQzXgEZfEFpm4a7i3+BQLOTbDM3kqnKVjzkYeT2qLrAUbSBumLnQGJSvzufZ60ebxPn7FQ; - Expires=Tue, 11 Jan 2022 19:34:13 GMT; Path=/; SameSite=None; Secure - - csrftoken=mCnEJJjwPpOITOj59b1trgLxRKZoIcxraTfzYtoslCGAkwApXNV6txyro4QQPPNj; - expires=Tue, 03 Jan 2023 19:34:14 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=03tdhinqauif7cbkz6ayalbxdnwuuf30; expires=Tue, 18 Jan 2022 19:34:14 + - AWSALB=oJw/WGUan1sKd7CAamjs3vmgM6qVUrt1Lmr//NyRVP7fhq930eNro9ZIjt18e/XO47rLq53ZVgMrufLqreRStOFU3pD6hvSGJ7XcGOKWf0IReYSWSxqGqwgg2Psr; + Expires=Fri, 14 Oct 2022 15:26:30 GMT; Path=/ + - AWSALBCORS=oJw/WGUan1sKd7CAamjs3vmgM6qVUrt1Lmr//NyRVP7fhq930eNro9ZIjt18e/XO47rLq53ZVgMrufLqreRStOFU3pD6hvSGJ7XcGOKWf0IReYSWSxqGqwgg2Psr; + Expires=Fri, 14 Oct 2022 15:26:30 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=y+mHWKUANy4WrBER5ytgYsfjpF/peQta5bxJwKeHZLoPKW29jQGAuBlv/LaY5mKjBYOVq3CnmDGlx/A67gJVO1+a1Ds961IHAMk0Ps7Yz54oLFHLnem+eccnd651LomTBR1R8Ri8dWonbVLjIh5JKMARyqxJT3Lw1C4VwLHNS/00; + Expires=Fri, 14 Oct 2022 15:26:30 GMT; Path=/ + - AWSALBTGCORS=y+mHWKUANy4WrBER5ytgYsfjpF/peQta5bxJwKeHZLoPKW29jQGAuBlv/LaY5mKjBYOVq3CnmDGlx/A67gJVO1+a1Ds961IHAMk0Ps7Yz54oLFHLnem+eccnd651LomTBR1R8Ri8dWonbVLjIh5JKMARyqxJT3Lw1C4VwLHNS/00; + Expires=Fri, 14 Oct 2022 15:26:30 GMT; Path=/; SameSite=None; Secure + - csrftoken=YgvdHz1ZFDXJmIQfeGQ8FAPlCJbfyIENX8TZKH6QH7aZhT4JCJb7zMZ2KCISGgu5; + expires=Fri, 06 Oct 2023 15:26:32 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=tf66zjxr5cgg9b1do9b1pev73bihli3i; expires=Fri, 21 Oct 2022 15:26:32 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -131,10 +120,10 @@ http_interactions: body: encoding: UTF-8 string: '' - recorded_at: Tue, 04 Jan 2022 19:34:14 GMT + recorded_at: Fri, 07 Oct 2022 15:26:32 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: UTF-8 string: '{"name":"TestProject"}' @@ -142,7 +131,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -155,30 +144,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:34:15 GMT + - Fri, 07 Oct 2022 15:26:34 GMT Content-Type: - application/json Content-Length: - - '304' + - '365' Connection: - keep-alive Set-Cookie: - - AWSALB=V+Oxgml0bESBtx1z51V2qeeLm1B4pZQlIq3vaUY0BXIeCCVLyoq93YM1NT9WBKGH7H98dFvDEJiaWnhmRX27TOZ8jdgf4U7mxhMZSikwJuAfS6i6RhLBywonOrId; - Expires=Tue, 11 Jan 2022 19:34:14 GMT; Path=/ - - AWSALBCORS=V+Oxgml0bESBtx1z51V2qeeLm1B4pZQlIq3vaUY0BXIeCCVLyoq93YM1NT9WBKGH7H98dFvDEJiaWnhmRX27TOZ8jdgf4U7mxhMZSikwJuAfS6i6RhLBywonOrId; - Expires=Tue, 11 Jan 2022 19:34:14 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=Rn/3B6wp5eiP+Rd/gaCTX9nkM1D9gIBAUhJlVVzUUJEmZKz6xiFlb01M5f1oIUalIu/XCni5OuwSYUUtoUK7tWqLI6gHvQA5qqaxNUqbG/jN32sX7L6BwvxVx6z8vM1VAZAw2rbSocQPJC9px3AhPNq+9Qm/vneigS71wsnzZvG2; - Expires=Tue, 11 Jan 2022 19:34:14 GMT; Path=/ - - AWSALBTGCORS=Rn/3B6wp5eiP+Rd/gaCTX9nkM1D9gIBAUhJlVVzUUJEmZKz6xiFlb01M5f1oIUalIu/XCni5OuwSYUUtoUK7tWqLI6gHvQA5qqaxNUqbG/jN32sX7L6BwvxVx6z8vM1VAZAw2rbSocQPJC9px3AhPNq+9Qm/vneigS71wsnzZvG2; - Expires=Tue, 11 Jan 2022 19:34:14 GMT; Path=/; SameSite=None; Secure - - csrftoken=8OaGS3JVJNWrQ5Jins2Eg4EPUJQDziE8CO3cW6wNuNNmj5kxnuhuutFFgDUJifLR; - expires=Tue, 03 Jan 2023 19:34:15 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=pcwukxx2wu0gr2kuwtzqq8d8b1goxbzs; expires=Tue, 18 Jan 2022 19:34:15 + - AWSALB=8GDOfMtlHBx2iZgSUoilu2s8H/QHoA9QL8cDJNMMrdWd8JH+uMm3dT2Z55M2/GB1m9TPuzsBHsKzbt8zqnFBNJ5ulPCmPwUKnCPI6mwRCjRh+I7aaGQlSpW2TPs5; + Expires=Fri, 14 Oct 2022 15:26:32 GMT; Path=/ + - AWSALBCORS=8GDOfMtlHBx2iZgSUoilu2s8H/QHoA9QL8cDJNMMrdWd8JH+uMm3dT2Z55M2/GB1m9TPuzsBHsKzbt8zqnFBNJ5ulPCmPwUKnCPI6mwRCjRh+I7aaGQlSpW2TPs5; + Expires=Fri, 14 Oct 2022 15:26:32 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=VyTH654vgLEpr5O2KfPhc4rBNPS/GQYdp3Z7oODFq5oG7WUuJOybxbFykMK61NnBXMLLHpty/+U7a6+gf9Y3DlubB6T8p3vhxkxjh/FoCofOrAi8h98Ksw1bn4Xl+fWUXxwHlBE/2bL0lFIKJV2nMc0/0d/WvvUsL6UV36jk2/yE; + Expires=Fri, 14 Oct 2022 15:26:32 GMT; Path=/ + - AWSALBTGCORS=VyTH654vgLEpr5O2KfPhc4rBNPS/GQYdp3Z7oODFq5oG7WUuJOybxbFykMK61NnBXMLLHpty/+U7a6+gf9Y3DlubB6T8p3vhxkxjh/FoCofOrAi8h98Ksw1bn4Xl+fWUXxwHlBE/2bL0lFIKJV2nMc0/0d/WvvUsL6UV36jk2/yE; + Expires=Fri, 14 Oct 2022 15:26:32 GMT; Path=/; SameSite=None; Secure + - csrftoken=u0tZvcWVXayVzPfOoEe5k5AGwdg8Dod4woxvxLide7Qrwt9DrGJjAJhrPeZliJbf; + expires=Fri, 06 Oct 2023 15:26:34 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=eic55lukr0fuvguiu3sjvk73sc28667n; expires=Fri, 21 Oct 2022 15:26:34 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/ + - https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/ Vary: - Accept, Cookie, Origin Allow: @@ -193,11 +182,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/","id":"a3868356-da3a-4b8b-b106-e0a275a5de73","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T19:34:15.147975Z","modified_at":"2022-01-04T19:34:15.147975Z"}' - recorded_at: Tue, 04 Jan 2022 19:34:15 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/","id":"9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:26:34.264266Z","modified_at":"2022-10-07T15:26:34.264266Z"}' + recorded_at: Fri, 07 Oct 2022 15:26:34 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -205,7 +194,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -218,25 +207,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:34:15 GMT + - Fri, 07 Oct 2022 15:26:35 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=68hAIKTZXD8zsH0PWn7sn3dva1TA8PBRxPb2sqZeoYFwnQHSWbk7MuhaV3LFOWeP1Qr+Ft2jUl5AyUQH1A1jMUQB0kawh7MYXichNmvq4rVQnWpzLz8g9UefHDHi; - Expires=Tue, 11 Jan 2022 19:34:15 GMT; Path=/ - - AWSALBCORS=68hAIKTZXD8zsH0PWn7sn3dva1TA8PBRxPb2sqZeoYFwnQHSWbk7MuhaV3LFOWeP1Qr+Ft2jUl5AyUQH1A1jMUQB0kawh7MYXichNmvq4rVQnWpzLz8g9UefHDHi; - Expires=Tue, 11 Jan 2022 19:34:15 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=vq0NardSOw4N1twvBRmYsVsGql3BZ929mXDRIqBok5SO1Psa6WZ/hD4GsQL+KZPpbwFWm57eKKolcjsNzSCI813wrp2X8qpf3ZC586kasDPqZMFhjDnu8cbA3atCamMQ6IFsTMfD/Q8VW0tMfhhqjRgLz6fJ93/8sPmyAsSWHFJX; - Expires=Tue, 11 Jan 2022 19:34:15 GMT; Path=/ - - AWSALBTGCORS=vq0NardSOw4N1twvBRmYsVsGql3BZ929mXDRIqBok5SO1Psa6WZ/hD4GsQL+KZPpbwFWm57eKKolcjsNzSCI813wrp2X8qpf3ZC586kasDPqZMFhjDnu8cbA3atCamMQ6IFsTMfD/Q8VW0tMfhhqjRgLz6fJ93/8sPmyAsSWHFJX; - Expires=Tue, 11 Jan 2022 19:34:15 GMT; Path=/; SameSite=None; Secure - - csrftoken=rhDGQcOeBX5REnfvsD8HKpJN8IcNlDPt8RAZhOsc1J72r3Wp4uKBGkaZ32AaelMt; - expires=Tue, 03 Jan 2023 19:34:15 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=tianijrjhq1znyqrtyo62b3g2f1ahb6g; expires=Tue, 18 Jan 2022 19:34:15 + - AWSALB=UGxkXc9NVR3/y3DP6TKoz53bGK9yNLQp0/0rDZd8rXK3Geh9O9ttrBnA2xdkO7LKqCqVwJQTWRzJ0I9Jc9OB76YZ2wWkVE7XcLpBqEQGWPh72igzYndnit5frVqN; + Expires=Fri, 14 Oct 2022 15:26:34 GMT; Path=/ + - AWSALBCORS=UGxkXc9NVR3/y3DP6TKoz53bGK9yNLQp0/0rDZd8rXK3Geh9O9ttrBnA2xdkO7LKqCqVwJQTWRzJ0I9Jc9OB76YZ2wWkVE7XcLpBqEQGWPh72igzYndnit5frVqN; + Expires=Fri, 14 Oct 2022 15:26:34 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=T4u+ggPNVwzDXRyTAum8mmAKu3no8rN1lAWBpxr9MTb6H2dCMUhNSKSC4EweUvQ3tsu03knYPLa+e4wbE89VR2H8fVnBgi0dRoylQVDY2h/DLhF9MMjTgk0Z+QPGlTsrdmEvKgtYBK01YcQFK3JZXIoCwHup/FUigiPIMZDzf3u6; + Expires=Fri, 14 Oct 2022 15:26:34 GMT; Path=/ + - AWSALBTGCORS=T4u+ggPNVwzDXRyTAum8mmAKu3no8rN1lAWBpxr9MTb6H2dCMUhNSKSC4EweUvQ3tsu03knYPLa+e4wbE89VR2H8fVnBgi0dRoylQVDY2h/DLhF9MMjTgk0Z+QPGlTsrdmEvKgtYBK01YcQFK3JZXIoCwHup/FUigiPIMZDzf3u6; + Expires=Fri, 14 Oct 2022 15:26:34 GMT; Path=/; SameSite=None; Secure + - csrftoken=m18WB5M7sPHa9G6tWiyZAFlebZJnsfEpU84iY8BTHgUatA2mlooTF5HYzFR4DBr2; + expires=Fri, 06 Oct 2023 15:26:35 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=xe1w0lxy7xw8wb6tv24jx4m47cp94wfk; expires=Fri, 21 Oct 2022 15:26:35 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -254,23 +243,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/","id":"a3868356-da3a-4b8b-b106-e0a275a5de73","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T19:34:15.147975Z","modified_at":"2022-01-04T19:34:15.147975Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 19:34:15 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/","id":"9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:26:34.264266Z","modified_at":"2022-10-07T15:26:34.264266Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:26:35 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/parameters/ body: encoding: UTF-8 string: '{"name":"one","type":"string"}' @@ -278,7 +256,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -291,30 +269,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:34:16 GMT + - Fri, 07 Oct 2022 15:26:37 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=LvoLjgknHs+ZeKecEN+elq/sePhKFhLqS1iXx/r5b/dvvZo5a/srU3bWkrS7X8ubDwVlPkniNaaT8fFyaVy+q3ZmGVb5PNJOE0XhFYdTnxccktAbqSjTHSSbpYBj; - Expires=Tue, 11 Jan 2022 19:34:16 GMT; Path=/ - - AWSALBCORS=LvoLjgknHs+ZeKecEN+elq/sePhKFhLqS1iXx/r5b/dvvZo5a/srU3bWkrS7X8ubDwVlPkniNaaT8fFyaVy+q3ZmGVb5PNJOE0XhFYdTnxccktAbqSjTHSSbpYBj; - Expires=Tue, 11 Jan 2022 19:34:16 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=jAgzsFgY4hooY6+H5q0y0uF5y9jjgsIDBS4KY6KgRgizqA9HIT3iEBqu02/O4Koq2u9YNSDfw0JJNGWRwhsmbu13UUvfU1hTB+oMVmW+rynqbauegQ2MMZ1vtrKNFhwWsiZ0gFzSJfy/7ecPYrX9U6Lnp2zQfBbt8/J9YWWEdwVR; - Expires=Tue, 11 Jan 2022 19:34:16 GMT; Path=/ - - AWSALBTGCORS=jAgzsFgY4hooY6+H5q0y0uF5y9jjgsIDBS4KY6KgRgizqA9HIT3iEBqu02/O4Koq2u9YNSDfw0JJNGWRwhsmbu13UUvfU1hTB+oMVmW+rynqbauegQ2MMZ1vtrKNFhwWsiZ0gFzSJfy/7ecPYrX9U6Lnp2zQfBbt8/J9YWWEdwVR; - Expires=Tue, 11 Jan 2022 19:34:16 GMT; Path=/; SameSite=None; Secure - - csrftoken=7ykM1WEaHXofXrw45DsL66XwoNCW7w5DDmgpEQqdBk8KI0hsI5A0RW3T2hvm8uqy; - expires=Tue, 03 Jan 2023 19:34:16 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=vsbfsdfom5zb994n28l912z35nr54g18; expires=Tue, 18 Jan 2022 19:34:16 + - AWSALB=wW5JQBeGZQNw1LVYEnNIPxFrz4bnLzJYTyL4lLkbvcbEkn3oNpbY2Ux9eNgz3ZMsJiYuHa0tFGQ7ZAtK8uO5h+rbYpUvA3UHtQLQ9tVOPxRo1X6JYEQH+u5piCYs; + Expires=Fri, 14 Oct 2022 15:26:35 GMT; Path=/ + - AWSALBCORS=wW5JQBeGZQNw1LVYEnNIPxFrz4bnLzJYTyL4lLkbvcbEkn3oNpbY2Ux9eNgz3ZMsJiYuHa0tFGQ7ZAtK8uO5h+rbYpUvA3UHtQLQ9tVOPxRo1X6JYEQH+u5piCYs; + Expires=Fri, 14 Oct 2022 15:26:35 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=cnzFUr3ZTA/YTOQnYLG41sag0LmzItv4T/QRNIAY9PAP71pioOxkUU49Sa+p11plbWLyB3pkQyvVb3icz/eNCHykIs/mONUL90yLM/FL31XfybcOcqbIcOxPxwUuXMj9ZdF6CdW48q2HEKiaQT4brI4hXTwk3TFM2UdbUeP9lMTh; + Expires=Fri, 14 Oct 2022 15:26:35 GMT; Path=/ + - AWSALBTGCORS=cnzFUr3ZTA/YTOQnYLG41sag0LmzItv4T/QRNIAY9PAP71pioOxkUU49Sa+p11plbWLyB3pkQyvVb3icz/eNCHykIs/mONUL90yLM/FL31XfybcOcqbIcOxPxwUuXMj9ZdF6CdW48q2HEKiaQT4brI4hXTwk3TFM2UdbUeP9lMTh; + Expires=Fri, 14 Oct 2022 15:26:35 GMT; Path=/; SameSite=None; Secure + - csrftoken=Ar3XqHkOpScQhqO1XO6AcN9DkGqa9z2uh49T2xLJhMhPuaPtB5dkxsH3KlE5G5rk; + expires=Fri, 06 Oct 2023 15:26:37 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=rvdol5leuyeajh4kz496aej58c4al3is; expires=Fri, 21 Oct 2022 15:26:37 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/parameters/a086687b-d7d4-4d74-bf17-464b18390225/ + - https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/parameters/30059f03-4cfd-4708-8be0-bd3f5996d097/ Vary: - Accept, Cookie, Origin Allow: @@ -329,11 +307,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/parameters/a086687b-d7d4-4d74-bf17-464b18390225/","id":"a086687b-d7d4-4d74-bf17-464b18390225","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T19:34:16.686659Z","modified_at":"2022-01-04T19:34:16.686659Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 19:34:16 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/parameters/30059f03-4cfd-4708-8be0-bd3f5996d097/","id":"30059f03-4cfd-4708-8be0-bd3f5996d097","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:26:37.404547Z","modified_at":"2022-10-07T15:26:37.404547Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:26:37 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/parameters/ body: encoding: UTF-8 string: '{"name":"two","type":"string"}' @@ -341,7 +319,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -354,30 +332,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:34:17 GMT + - Fri, 07 Oct 2022 15:26:39 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=nWX/7rLSvGl/f151q9mr2mrtk7vQ2vtKERGOHw9DvdTs6U76axv5QP8RoW1lGl3LLq2q94GlMBjXkpPHTG2E7Vn6BUo6spgu55crqzJEyjv4D+9zRNw3ICvZmN9h; - Expires=Tue, 11 Jan 2022 19:34:16 GMT; Path=/ - - AWSALBCORS=nWX/7rLSvGl/f151q9mr2mrtk7vQ2vtKERGOHw9DvdTs6U76axv5QP8RoW1lGl3LLq2q94GlMBjXkpPHTG2E7Vn6BUo6spgu55crqzJEyjv4D+9zRNw3ICvZmN9h; - Expires=Tue, 11 Jan 2022 19:34:16 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=LRI6cqpfeTB1s0b0BpudNhreGMOgKvft4iZZXX0CoEFWyPCDvjFeK/NxgMGlCsnNYPH6CUAtLnHWcmv/RRsKtaHDLesgxGzUS0/koqt2ITSe/pKvu+hLu9vMS9dm5JnFCl2w6psjzIsOKWSiC7uTNDTGAbmNn92N8UQ6WH+idJnS; - Expires=Tue, 11 Jan 2022 19:34:16 GMT; Path=/ - - AWSALBTGCORS=LRI6cqpfeTB1s0b0BpudNhreGMOgKvft4iZZXX0CoEFWyPCDvjFeK/NxgMGlCsnNYPH6CUAtLnHWcmv/RRsKtaHDLesgxGzUS0/koqt2ITSe/pKvu+hLu9vMS9dm5JnFCl2w6psjzIsOKWSiC7uTNDTGAbmNn92N8UQ6WH+idJnS; - Expires=Tue, 11 Jan 2022 19:34:16 GMT; Path=/; SameSite=None; Secure - - csrftoken=IeLtAg2WmXaXnLa3DxJreFiSIRUqemu0JIY7YbjMzWc96tJ6HqHyYEScQFbgupgQ; - expires=Tue, 03 Jan 2023 19:34:17 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=w4jmkootpnebav0w7k40a489dqegx12g; expires=Tue, 18 Jan 2022 19:34:17 + - AWSALB=k9hC2i4+7/OjPXdtjkPqGeuMGcwRiQokv5MR/n+ovHyhWqRA4e8tYT96L5W/AWjl7hoZLegAM6HNwun+eOg1biPQFEZ2T5oyEl7Gw6l6B18nxS5TwTSnQGCrlh6u; + Expires=Fri, 14 Oct 2022 15:26:37 GMT; Path=/ + - AWSALBCORS=k9hC2i4+7/OjPXdtjkPqGeuMGcwRiQokv5MR/n+ovHyhWqRA4e8tYT96L5W/AWjl7hoZLegAM6HNwun+eOg1biPQFEZ2T5oyEl7Gw6l6B18nxS5TwTSnQGCrlh6u; + Expires=Fri, 14 Oct 2022 15:26:37 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=cYLpUra5bxVdvLRv8olwygrDVWS5pPQltUpjWWLPisHb8EmaqXHl0nduxheKm8mUKa8chmUgSHdMPzqHeiYdCFsBxM7/4grdyYBnoooM+tHW+7JIrYS6PMihA9Np5jb0PrWExLk6Y4G+YAuphSd5DyZ7NnBx6ExoB97ZGLP+Sz5a; + Expires=Fri, 14 Oct 2022 15:26:37 GMT; Path=/ + - AWSALBTGCORS=cYLpUra5bxVdvLRv8olwygrDVWS5pPQltUpjWWLPisHb8EmaqXHl0nduxheKm8mUKa8chmUgSHdMPzqHeiYdCFsBxM7/4grdyYBnoooM+tHW+7JIrYS6PMihA9Np5jb0PrWExLk6Y4G+YAuphSd5DyZ7NnBx6ExoB97ZGLP+Sz5a; + Expires=Fri, 14 Oct 2022 15:26:37 GMT; Path=/; SameSite=None; Secure + - csrftoken=UQiiOU4HbkmUmGw6yHza3vvSgzFdI261meR3q9D7ul6B3MfRh264Dv4AsvuY8E3Y; + expires=Fri, 06 Oct 2023 15:26:39 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=shvxd49emvroqunq0xwnjxl0dz2vw1vv; expires=Fri, 21 Oct 2022 15:26:39 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/parameters/64f9938d-7f3c-44e5-adba-3f8d4cc5dbcb/ + - https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/parameters/1c87538a-a9e5-47ae-9d43-08ec299f3661/ Vary: - Accept, Cookie, Origin Allow: @@ -392,11 +370,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/parameters/64f9938d-7f3c-44e5-adba-3f8d4cc5dbcb/","id":"64f9938d-7f3c-44e5-adba-3f8d4cc5dbcb","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T19:34:17.194512Z","modified_at":"2022-01-04T19:34:17.194512Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 19:34:17 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/parameters/1c87538a-a9e5-47ae-9d43-08ec299f3661/","id":"1c87538a-a9e5-47ae-9d43-08ec299f3661","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:26:39.589896Z","modified_at":"2022-10-07T15:26:39.589896Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:26:39 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/parameters/ body: encoding: UTF-8 string: '{"name":"three","secret":true,"type":"string"}' @@ -404,7 +382,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -417,30 +395,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:34:17 GMT + - Fri, 07 Oct 2022 15:26:41 GMT Content-Type: - application/json Content-Length: - - '1358' + - '968' Connection: - keep-alive Set-Cookie: - - AWSALB=bd1mKQtl9wXTcLgE1I/MohNQTNy/8N/drmCofmq/lzwyv4DJmHx2zyU/0f5bj4Sd5f/0KQdabAUOwnNY4YGve8yls7urT+ftDfMtC68yg+B8BQ1gm5LotugjkoRE; - Expires=Tue, 11 Jan 2022 19:34:17 GMT; Path=/ - - AWSALBCORS=bd1mKQtl9wXTcLgE1I/MohNQTNy/8N/drmCofmq/lzwyv4DJmHx2zyU/0f5bj4Sd5f/0KQdabAUOwnNY4YGve8yls7urT+ftDfMtC68yg+B8BQ1gm5LotugjkoRE; - Expires=Tue, 11 Jan 2022 19:34:17 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=aUFPHcFrMOpbI8xaC5xwXpJKyVllQld4w9Yz9yYGnT+ZPjs5iHMkqC5s+Z/9CoOBBpCdV9HJ7mXRnZvQ3Ti+t1w387Fr+ef5hhv6Q1BCE7XSx3rh8ZN9eTfV9H2TFte0fxGafPMrbt/BfQyBKceXwZimp+9+50iKOU9qk7rJSD/Y; - Expires=Tue, 11 Jan 2022 19:34:17 GMT; Path=/ - - AWSALBTGCORS=aUFPHcFrMOpbI8xaC5xwXpJKyVllQld4w9Yz9yYGnT+ZPjs5iHMkqC5s+Z/9CoOBBpCdV9HJ7mXRnZvQ3Ti+t1w387Fr+ef5hhv6Q1BCE7XSx3rh8ZN9eTfV9H2TFte0fxGafPMrbt/BfQyBKceXwZimp+9+50iKOU9qk7rJSD/Y; - Expires=Tue, 11 Jan 2022 19:34:17 GMT; Path=/; SameSite=None; Secure - - csrftoken=rwMg4pohSZfvu9H1rdCSjLDkCag9hFZ8G6bmJ0afOLVmH89BGnCM7cubfuelYjk6; - expires=Tue, 03 Jan 2023 19:34:17 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=r84694uukyjgn8wyh5wwx7geplf2laje; expires=Tue, 18 Jan 2022 19:34:17 + - AWSALB=gMjJAMezM3x0vUxiPhHKUtW9UWSkKme58avzAgo98PkxqVHlA8/iPQZotBZZ9QPOLXdcJYuvB3TedE7+BREx/JCrMGb93bIWaAEuXRs1fPwQFHzwOgAxjyabdqUG; + Expires=Fri, 14 Oct 2022 15:26:39 GMT; Path=/ + - AWSALBCORS=gMjJAMezM3x0vUxiPhHKUtW9UWSkKme58avzAgo98PkxqVHlA8/iPQZotBZZ9QPOLXdcJYuvB3TedE7+BREx/JCrMGb93bIWaAEuXRs1fPwQFHzwOgAxjyabdqUG; + Expires=Fri, 14 Oct 2022 15:26:39 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=O2qbjhY2m4ssQvsF9dcWFPXlUMdu85Czzha9PPPclnPuADvXWoh8QRneqmePKXuzLrO+Oq8iNzLOLTP3dm7N4gycHjXR3pd2z0gHuIpJvx6elY/zXmG3fpJ0VxASnXb+pchBK60QGs/cWBgvJZjNkUjqAgUcvQw+wTN2YxlxVh5L; + Expires=Fri, 14 Oct 2022 15:26:39 GMT; Path=/ + - AWSALBTGCORS=O2qbjhY2m4ssQvsF9dcWFPXlUMdu85Czzha9PPPclnPuADvXWoh8QRneqmePKXuzLrO+Oq8iNzLOLTP3dm7N4gycHjXR3pd2z0gHuIpJvx6elY/zXmG3fpJ0VxASnXb+pchBK60QGs/cWBgvJZjNkUjqAgUcvQw+wTN2YxlxVh5L; + Expires=Fri, 14 Oct 2022 15:26:39 GMT; Path=/; SameSite=None; Secure + - csrftoken=dVJsHUSaYPEGkuV5El3Poe2W90KIZSc5J1HOi2K0h0uzej7W0Jt4hcgmeYYMQrAf; + expires=Fri, 06 Oct 2023 15:26:41 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=jxe4vt6c4vpw867605mvcy3lqbolx7o5; expires=Fri, 21 Oct 2022 15:26:41 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/parameters/986562bd-fa8d-46be-9111-860d750eed7c/ + - https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/parameters/6013615b-bcdb-4b10-81b6-eddabedbdf2e/ Vary: - Accept, Cookie, Origin Allow: @@ -455,11 +433,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/parameters/986562bd-fa8d-46be-9111-860d750eed7c/","id":"986562bd-fa8d-46be-9111-860d750eed7c","name":"three","description":"","secret":true,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T19:34:17.803289Z","modified_at":"2022-01-04T19:34:17.803289Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 19:34:17 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/parameters/6013615b-bcdb-4b10-81b6-eddabedbdf2e/","id":"6013615b-bcdb-4b10-81b6-eddabedbdf2e","name":"three","description":"","secret":true,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:26:41.354160Z","modified_at":"2022-10-07T15:26:41.354160Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:26:41 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/environments/ + uri: https://api.staging.cloudtruth.io/api/v1/environments/ body: encoding: US-ASCII string: '' @@ -467,7 +445,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -480,25 +458,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:34:18 GMT + - Fri, 07 Oct 2022 15:26:43 GMT Content-Type: - application/json Content-Length: - - '4139' + - '2085' Connection: - keep-alive Set-Cookie: - - AWSALB=pRdY2tV/VXH5CIFNMU05h1mA9oWLmnec9/z9j5SWJljtZOZoRWBZy2hvv+msVs/Pnd3cK5R0Rj1/Tuea4vs/D2gdxR6kRrAtaJ0CyzcHJNS9BSpl/hD4h7584M3i; - Expires=Tue, 11 Jan 2022 19:34:18 GMT; Path=/ - - AWSALBCORS=pRdY2tV/VXH5CIFNMU05h1mA9oWLmnec9/z9j5SWJljtZOZoRWBZy2hvv+msVs/Pnd3cK5R0Rj1/Tuea4vs/D2gdxR6kRrAtaJ0CyzcHJNS9BSpl/hD4h7584M3i; - Expires=Tue, 11 Jan 2022 19:34:18 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=fGnuD9mrQAD7WMRXzCLakjn/DoBND3LaErlVSCOkw+N0zvPr0TNNbVBYTvwHq5WjFJyEOKfnlR7MEotG7Zp48oSS/6oCRpJNXhcCjXcnshyulMIwobpsxvvJEl7dJ+1v5T1xiEd5g9wJxSd3ZoVD6S7FmEPm5x3a2Ou3MVkkPHTt; - Expires=Tue, 11 Jan 2022 19:34:18 GMT; Path=/ - - AWSALBTGCORS=fGnuD9mrQAD7WMRXzCLakjn/DoBND3LaErlVSCOkw+N0zvPr0TNNbVBYTvwHq5WjFJyEOKfnlR7MEotG7Zp48oSS/6oCRpJNXhcCjXcnshyulMIwobpsxvvJEl7dJ+1v5T1xiEd5g9wJxSd3ZoVD6S7FmEPm5x3a2Ou3MVkkPHTt; - Expires=Tue, 11 Jan 2022 19:34:18 GMT; Path=/; SameSite=None; Secure - - csrftoken=3ZnDN2G4upZNFDmL9kZT2aXbNRQW4t5vBAPmAigf3kGGvalsCXGFId1Q7vYqp65J; - expires=Tue, 03 Jan 2023 19:34:18 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=6acem3gihmalz0frpj7vwo4esgk7r3ry; expires=Tue, 18 Jan 2022 19:34:18 + - AWSALB=3Tla09q6vdjuDOr0ZXrUuBH6NfL/qxMP/UmSj5e/6WR4KlDncKnUHDDcy9e0Y4ZnZ66tH2dOitYWG1TbPghjUNakFXke3mBuo8Z71NVLRPdUT4ABYpTqEXQwuKNY; + Expires=Fri, 14 Oct 2022 15:26:41 GMT; Path=/ + - AWSALBCORS=3Tla09q6vdjuDOr0ZXrUuBH6NfL/qxMP/UmSj5e/6WR4KlDncKnUHDDcy9e0Y4ZnZ66tH2dOitYWG1TbPghjUNakFXke3mBuo8Z71NVLRPdUT4ABYpTqEXQwuKNY; + Expires=Fri, 14 Oct 2022 15:26:41 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=fWTZ8Xb09EieO8BpDt1UD9oqxiaE4zqz6K1K1M25DOmoSw0dpPfkrD/RwlFGRp9DkL9xuIolqtVGG7t+DfGb0kF6kRHne9WBKiOye9xvH0+J4yuMPcZ015wBUd4CwDzF0UObcC3D4B5JOZGXiAwmDOzlwAt8FyDeQMS/iJiZf49F; + Expires=Fri, 14 Oct 2022 15:26:41 GMT; Path=/ + - AWSALBTGCORS=fWTZ8Xb09EieO8BpDt1UD9oqxiaE4zqz6K1K1M25DOmoSw0dpPfkrD/RwlFGRp9DkL9xuIolqtVGG7t+DfGb0kF6kRHne9WBKiOye9xvH0+J4yuMPcZ015wBUd4CwDzF0UObcC3D4B5JOZGXiAwmDOzlwAt8FyDeQMS/iJiZf49F; + Expires=Fri, 14 Oct 2022 15:26:41 GMT; Path=/; SameSite=None; Secure + - csrftoken=uLkt6yxxoLalYd6CJNBZRGpMmFfvcAzJfQkxED6lQ8RAIBoqNXi61JnFVZ8SoF4u; + expires=Fri, 06 Oct 2023 15:26:43 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ebr39mvnch0im7vv8svi73j6uqo2fvat; expires=Fri, 21 Oct 2022 15:26:43 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -516,24 +494,23 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":9,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","id":"e8bc190d-0354-4e66-91c9-64501e501ec5","name":"default","description":"The - auto-generated default environment.","parent":null,"children":["https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/"],"created_at":"2021-07-20T18:14:09.023022Z","modified_at":"2022-01-04T19:34:11.679494Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","id":"c4de304d-5dd4-4a41-80ec-9a469f1aa4f5","name":"development","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/"],"created_at":"2021-07-20T18:14:09.035255Z","modified_at":"2022-01-04T17:38:49.782969Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/","id":"12b9c81b-9002-423b-9ca7-22cece646d07","name":"dev-matt","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","children":[],"created_at":"2021-07-21T19:53:37.534082Z","modified_at":"2021-07-26T22:01:23.472634Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","id":"2281d9da-8376-4f45-baf2-372a71260dfa","name":"europe","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T19:53:47.438517Z","modified_at":"2021-07-26T22:01:29.331661Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","id":"c99d6ab9-4674-4f76-bb43-da0b19124e18","name":"local","description":"for - local development","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T19:53:50.000541Z","modified_at":"2021-07-26T22:01:32.150839Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","id":"ef133a2e-3c9c-4229-a509-e56332baff40","name":"ops","description":"The - ops environment - infrastructure that acts as the entry point to the other - environment''s infrastructure","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T20:05:10.325110Z","modified_at":"2021-07-26T22:01:35.184068Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","id":"cde7cf9d-8bf2-46cb-9e97-dee9b99e4335","name":"production","description":"for - real","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/"],"created_at":"2021-07-20T18:14:09.058957Z","modified_at":"2021-10-26T18:14:38.859067Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/","id":"e4399ff4-a962-451b-adfb-7e504ad6bb6d","name":"staging","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-20T18:14:09.047049Z","modified_at":"2021-07-26T18:46:21.385162Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/","id":"3afc0523-4722-4fa1-aaea-5d49beaa284d","name":"usa","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T20:05:24.767679Z","modified_at":"2021-07-26T18:44:51.186840Z"}]}' - recorded_at: Tue, 04 Jan 2022 19:34:18 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","id":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","name":"default","description":"Default + environment, base for all environments.","parent":null,"children":["https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/"],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.112161Z","modified_at":"2022-06-02T17:13:09.641786Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","id":"8f2e37b9-b429-4987-bb85-abd24bd67274","name":"development","description":"Development + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.123839Z","modified_at":"2022-06-02T17:11:55.123839Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","id":"0663ac09-5883-452b-bc1a-00e3347fece5","name":"production","description":"Production + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.145580Z","modified_at":"2022-06-02T17:11:55.145580Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/","id":"fc970cc2-c24f-427d-9c7a-70acde9f1b64","name":"staging","description":"Staging + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.134547Z","modified_at":"2022-06-02T17:11:55.134547Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:26:43 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/parameters/986562bd-fa8d-46be-9111-860d750eed7c/values/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/parameters/6013615b-bcdb-4b10-81b6-eddabedbdf2e/values/ body: encoding: UTF-8 - string: '{"environment":"e8bc190d-0354-4e66-91c9-64501e501ec5","external":false,"internal_value":"defaultthree"}' + string: '{"environment":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","external":false,"internal_value":"defaultthree"}' headers: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -546,30 +523,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:34:19 GMT + - Fri, 07 Oct 2022 15:26:44 GMT Content-Type: - application/json Content-Length: - - '926' + - '978' Connection: - keep-alive Set-Cookie: - - AWSALB=pqPSuUQAnINn7Bk0YMHR97Wy2gDB1epAsgiDxWqF+8LnChPM2XnnkTMgh7UAYkh9/rCegIireu6xOcfRQTLXgk19hMhCbwL2OsJwmbl1gZZ5ZB/8+50y/dts86M2; - Expires=Tue, 11 Jan 2022 19:34:18 GMT; Path=/ - - AWSALBCORS=pqPSuUQAnINn7Bk0YMHR97Wy2gDB1epAsgiDxWqF+8LnChPM2XnnkTMgh7UAYkh9/rCegIireu6xOcfRQTLXgk19hMhCbwL2OsJwmbl1gZZ5ZB/8+50y/dts86M2; - Expires=Tue, 11 Jan 2022 19:34:18 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=98j02C+/+XXYbZ4AZRbwvWR48HfVpnZpud1CV7ZN8Dt4jOnGUPlUXloKlOeya62Z/cJd8UCXY2utXRvKSgX3WfA+sMbPLRe4izKRy7hlR5RTzocLDcYTdWtcYqSlJZtMbPuEfHf48ppjr7IQT2V0NekUu+QZ5bj61XW9FUvXzyXh; - Expires=Tue, 11 Jan 2022 19:34:18 GMT; Path=/ - - AWSALBTGCORS=98j02C+/+XXYbZ4AZRbwvWR48HfVpnZpud1CV7ZN8Dt4jOnGUPlUXloKlOeya62Z/cJd8UCXY2utXRvKSgX3WfA+sMbPLRe4izKRy7hlR5RTzocLDcYTdWtcYqSlJZtMbPuEfHf48ppjr7IQT2V0NekUu+QZ5bj61XW9FUvXzyXh; - Expires=Tue, 11 Jan 2022 19:34:18 GMT; Path=/; SameSite=None; Secure - - csrftoken=zOhtmII3sW8f5Xhl9knY6VLEMwNZuR3XMuNsakrUeoiPKZBm4PFP6lbRS53SHf8V; - expires=Tue, 03 Jan 2023 19:34:19 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=36znt7jst6i84cemgmzg44qlolaq1rxz; expires=Tue, 18 Jan 2022 19:34:19 + - AWSALB=ft/iaCBEEpQCi8A7GUoX9WjkWDrMZdYeOkVDyOFZVhzBRMnmLiQnSdk852VoblqrWPC07mhJQ0zI3J+U0GMPI/Z+uhi00KfriB9m+Iz1IttBp8Nov2ATn29ojgQr; + Expires=Fri, 14 Oct 2022 15:26:43 GMT; Path=/ + - AWSALBCORS=ft/iaCBEEpQCi8A7GUoX9WjkWDrMZdYeOkVDyOFZVhzBRMnmLiQnSdk852VoblqrWPC07mhJQ0zI3J+U0GMPI/Z+uhi00KfriB9m+Iz1IttBp8Nov2ATn29ojgQr; + Expires=Fri, 14 Oct 2022 15:26:43 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=npIVGSQJZqPvAsxyXFd2VcGVqmYK22RKImNR2+6rerKXA/G4YU1UdiNY3sDcmFVApfjauV0KEfC3Nc0yasHkUjZ+GZ6tGE2pUEvY6AGmbnf+b/Zvd4Zpm3tLZm7XRvMUAZd/8OWmX7wZDz6QVNt5Koz1s/fCFcdEt3iVp54IaHiX; + Expires=Fri, 14 Oct 2022 15:26:43 GMT; Path=/ + - AWSALBTGCORS=npIVGSQJZqPvAsxyXFd2VcGVqmYK22RKImNR2+6rerKXA/G4YU1UdiNY3sDcmFVApfjauV0KEfC3Nc0yasHkUjZ+GZ6tGE2pUEvY6AGmbnf+b/Zvd4Zpm3tLZm7XRvMUAZd/8OWmX7wZDz6QVNt5Koz1s/fCFcdEt3iVp54IaHiX; + Expires=Fri, 14 Oct 2022 15:26:43 GMT; Path=/; SameSite=None; Secure + - csrftoken=h0bs69WTvCfjHHe6qf2fJdCXSbJGzmMeSIFIYY2qgW1su99YVXNNFjGpOOgIET1C; + expires=Fri, 06 Oct 2023 15:26:44 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=itlm1sffc4dwp2tyweb45xa91e8o0h3u; expires=Fri, 21 Oct 2022 15:26:44 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/parameters/986562bd-fa8d-46be-9111-860d750eed7c/values/7e05bbc0-9f77-46d6-b858-c000d98aa66d/ + - https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/parameters/6013615b-bcdb-4b10-81b6-eddabedbdf2e/values/26581f40-da1c-4d41-8721-58cab95d2f29/ Vary: - Accept, Cookie, Origin Allow: @@ -584,11 +561,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/parameters/986562bd-fa8d-46be-9111-860d750eed7c/values/7e05bbc0-9f77-46d6-b858-c000d98aa66d/","id":"7e05bbc0-9f77-46d6-b858-c000d98aa66d","environment":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","environment_name":"default","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/parameters/986562bd-fa8d-46be-9111-860d750eed7c/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":null,"interpolated":false,"value":"defaultthree","evaluated":false,"secret":true,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:34:18.935540Z","modified_at":"2022-01-04T19:34:19.433012Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":null}' - recorded_at: Tue, 04 Jan 2022 19:34:19 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/parameters/6013615b-bcdb-4b10-81b6-eddabedbdf2e/values/26581f40-da1c-4d41-8721-58cab95d2f29/","id":"26581f40-da1c-4d41-8721-58cab95d2f29","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/parameters/6013615b-bcdb-4b10-81b6-eddabedbdf2e/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":null,"interpolated":false,"value":"defaultthree","evaluated":false,"secret":true,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:26:44.847373Z","modified_at":"2022-10-07T15:26:44.847373Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":null}' + recorded_at: Fri, 07 Oct 2022 15:26:44 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/parameters/?environment=e8bc190d-0354-4e66-91c9-64501e501ec5 + uri: https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/parameters/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76 body: encoding: US-ASCII string: '' @@ -596,7 +573,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -609,25 +586,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:34:20 GMT + - Fri, 07 Oct 2022 15:26:46 GMT Content-Type: - application/json Content-Length: - - '2864' + - '3039' Connection: - keep-alive Set-Cookie: - - AWSALB=CDWwUrQ2x0E0QlMQX5jLCNJrhBkRSudGABYZCPTEeaiAathbm4jy14uifKkQ/kSJtjc9m/p5r/09+gT7da/KiO0DtjFV7xnPoOWUIXlNihfkZ/Njyvg0t8H0wwOz; - Expires=Tue, 11 Jan 2022 19:34:19 GMT; Path=/ - - AWSALBCORS=CDWwUrQ2x0E0QlMQX5jLCNJrhBkRSudGABYZCPTEeaiAathbm4jy14uifKkQ/kSJtjc9m/p5r/09+gT7da/KiO0DtjFV7xnPoOWUIXlNihfkZ/Njyvg0t8H0wwOz; - Expires=Tue, 11 Jan 2022 19:34:19 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=yAgucLm7+JuwrQE1ZYgmqOIvHOqkv+7vVGIfGWeNcwQwfvlIEaOW2piPVwdrry/BNn2AGYdM6b6/mtiPEX+yalqCV2MybvyXa3QksSLcNMMQMzvStKx7pJGsN4+oZesG9NV0VefxXpB3n0Uq5D7KT+HpgGTlZyYEvk3oM2DDrzuj; - Expires=Tue, 11 Jan 2022 19:34:19 GMT; Path=/ - - AWSALBTGCORS=yAgucLm7+JuwrQE1ZYgmqOIvHOqkv+7vVGIfGWeNcwQwfvlIEaOW2piPVwdrry/BNn2AGYdM6b6/mtiPEX+yalqCV2MybvyXa3QksSLcNMMQMzvStKx7pJGsN4+oZesG9NV0VefxXpB3n0Uq5D7KT+HpgGTlZyYEvk3oM2DDrzuj; - Expires=Tue, 11 Jan 2022 19:34:19 GMT; Path=/; SameSite=None; Secure - - csrftoken=7BgutcRqfAuFD6FxHIANK4OFLqwAOvtNxtYOAJ3lMKMF7NbvDX1oUZ1DCI6WPD37; - expires=Tue, 03 Jan 2023 19:34:20 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=9gjwduf877fdlio4ovehggvkhihwsh5m; expires=Tue, 18 Jan 2022 19:34:20 + - AWSALB=7jlWD2NB33faq+weiSvbLUdxmHFJaIuLzg/scwv8fkY0SGSoyeDmrY6mNMFQmZY9Jdu7kw9rL9Mw1id9z0nAqXg//Ir9aiJu7tHNgZjHdnmdr+qn64mEzpqHwm6B; + Expires=Fri, 14 Oct 2022 15:26:45 GMT; Path=/ + - AWSALBCORS=7jlWD2NB33faq+weiSvbLUdxmHFJaIuLzg/scwv8fkY0SGSoyeDmrY6mNMFQmZY9Jdu7kw9rL9Mw1id9z0nAqXg//Ir9aiJu7tHNgZjHdnmdr+qn64mEzpqHwm6B; + Expires=Fri, 14 Oct 2022 15:26:45 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=HiUpmYqHAV1hTqKpqY99KIfePYJBnWKaseR3kSnW/+OCBScV41DjtoAqowzORH8O4zToLCZc8hc+x5W7T+J9H1ChGc7POglRCUYUbMhBsOnT9NAcu4vjzTHRNfI8OVQz7oAlQmUt1R6lFNcbZC49cO4AJDNqeL75ooF7RUrho5Pv; + Expires=Fri, 14 Oct 2022 15:26:45 GMT; Path=/ + - AWSALBTGCORS=HiUpmYqHAV1hTqKpqY99KIfePYJBnWKaseR3kSnW/+OCBScV41DjtoAqowzORH8O4zToLCZc8hc+x5W7T+J9H1ChGc7POglRCUYUbMhBsOnT9NAcu4vjzTHRNfI8OVQz7oAlQmUt1R6lFNcbZC49cO4AJDNqeL75ooF7RUrho5Pv; + Expires=Fri, 14 Oct 2022 15:26:45 GMT; Path=/; SameSite=None; Secure + - csrftoken=bfBucCl2Tmb2gXHRJtHWHclCUC1QE4B19x2umCPdtqzVtaciRCHxrohTulcJpkTI; + expires=Fri, 06 Oct 2023 15:26:46 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=wfq0rwyxbhwmb3j05v1fg4caa5fmnfxy; expires=Fri, 21 Oct 2022 15:26:46 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -645,6 +622,6 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":3,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/parameters/a086687b-d7d4-4d74-bf17-464b18390225/","id":"a086687b-d7d4-4d74-bf17-464b18390225","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null},"created_at":"2022-01-04T19:34:16.686659Z","modified_at":"2022-01-04T19:34:16.686659Z","templates":[]},{"url":"https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/parameters/986562bd-fa8d-46be-9111-860d750eed7c/","id":"986562bd-fa8d-46be-9111-860d750eed7c","name":"three","description":"","secret":true,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":{"url":"https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/parameters/986562bd-fa8d-46be-9111-860d750eed7c/values/7e05bbc0-9f77-46d6-b858-c000d98aa66d/","id":"7e05bbc0-9f77-46d6-b858-c000d98aa66d","environment":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","environment_name":"default","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/parameters/986562bd-fa8d-46be-9111-860d750eed7c/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":null,"interpolated":false,"value":"defaultthree","evaluated":false,"secret":true,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:34:18.935540Z","modified_at":"2022-01-04T19:34:19.433012Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":null}},"created_at":"2022-01-04T19:34:17.803289Z","modified_at":"2022-01-04T19:34:19.433012Z","templates":[]},{"url":"https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/parameters/64f9938d-7f3c-44e5-adba-3f8d4cc5dbcb/","id":"64f9938d-7f3c-44e5-adba-3f8d4cc5dbcb","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null},"created_at":"2022-01-04T19:34:17.194512Z","modified_at":"2022-01-04T19:34:17.194512Z","templates":[]}]}' - recorded_at: Tue, 04 Jan 2022 19:34:20 GMT + string: '{"count":3,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/parameters/30059f03-4cfd-4708-8be0-bd3f5996d097/","id":"30059f03-4cfd-4708-8be0-bd3f5996d097","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null},"overrides":null,"created_at":"2022-10-07T15:26:37.404547Z","modified_at":"2022-10-07T15:26:37.404547Z","templates":[]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/parameters/6013615b-bcdb-4b10-81b6-eddabedbdf2e/","id":"6013615b-bcdb-4b10-81b6-eddabedbdf2e","name":"three","description":"","secret":true,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":{"url":"https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/parameters/6013615b-bcdb-4b10-81b6-eddabedbdf2e/values/26581f40-da1c-4d41-8721-58cab95d2f29/","id":"26581f40-da1c-4d41-8721-58cab95d2f29","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/parameters/6013615b-bcdb-4b10-81b6-eddabedbdf2e/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":null,"interpolated":false,"value":"defaultthree","evaluated":false,"secret":true,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:26:44.847373Z","modified_at":"2022-10-07T15:26:44.847373Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":null}},"overrides":null,"created_at":"2022-10-07T15:26:41.354160Z","modified_at":"2022-10-07T15:26:41.354160Z","templates":[]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/parameters/1c87538a-a9e5-47ae-9d43-08ec299f3661/","id":"1c87538a-a9e5-47ae-9d43-08ec299f3661","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/9e9bdd6b-0e18-4a85-bf74-c23ff93ec2ec/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null},"overrides":null,"created_at":"2022-10-07T15:26:39.589896Z","modified_at":"2022-10-07T15:26:39.589896Z","templates":[]}]}' + recorded_at: Fri, 07 Oct 2022 15:26:46 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_parameters.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_parameters.yml index 166c049..0db44ea 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_parameters.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_parameters.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -10,7 +10,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -23,25 +23,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:33:59 GMT + - Fri, 07 Oct 2022 15:25:47 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=PyQxVFVI7lB11yuo4cmH7m/US19qiCAtZojhu+PFJPPl6CKAlbpUiNNwbCrYgbRFuHyTD5Cz/xEnBI0eGwbIY6xzLK/pJkvaiiLNg50pHHT91+x8AFa0BZSfLwJp; - Expires=Tue, 11 Jan 2022 19:33:58 GMT; Path=/ - - AWSALBCORS=PyQxVFVI7lB11yuo4cmH7m/US19qiCAtZojhu+PFJPPl6CKAlbpUiNNwbCrYgbRFuHyTD5Cz/xEnBI0eGwbIY6xzLK/pJkvaiiLNg50pHHT91+x8AFa0BZSfLwJp; - Expires=Tue, 11 Jan 2022 19:33:58 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=KbDsmzVuuSq5fpJXQ8l53MkeyTCphM4rZTBf4jheO/EOhgGphrSwUvbutqvWR8vd7lnz2YSLuEMheeA/a1TSQYS6pLntb9CAQ2ng4cVn2U6kmM1jdcy70QjzkXtz1To1k09d7TA1M+5kzXOiOLdp8mpBq7ZVIm4EhwljlsYbpdv0; - Expires=Tue, 11 Jan 2022 19:33:58 GMT; Path=/ - - AWSALBTGCORS=KbDsmzVuuSq5fpJXQ8l53MkeyTCphM4rZTBf4jheO/EOhgGphrSwUvbutqvWR8vd7lnz2YSLuEMheeA/a1TSQYS6pLntb9CAQ2ng4cVn2U6kmM1jdcy70QjzkXtz1To1k09d7TA1M+5kzXOiOLdp8mpBq7ZVIm4EhwljlsYbpdv0; - Expires=Tue, 11 Jan 2022 19:33:58 GMT; Path=/; SameSite=None; Secure - - csrftoken=fQF8F9vEZiYiJdWIwYGQTmlnJNGLTJMP46NuIRloMqHAPoxIiVcgydSCUEJl1O89; - expires=Tue, 03 Jan 2023 19:33:59 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=ozeshcq3z8ym5ox8qj5vyg1ji84l4j7l; expires=Tue, 18 Jan 2022 19:33:59 + - AWSALB=pfDiDogTEz06f3rQjYVJAaogwyRqBwPcJHsqzuXNVstZZhUK0akO6P5sZM0nHYSmJSNE99LXnN6p1UbBKSTWb6CX9zY9oGDuBK+0/5x5aRCr2pJbeIiuiZUMpF1n; + Expires=Fri, 14 Oct 2022 15:25:45 GMT; Path=/ + - AWSALBCORS=pfDiDogTEz06f3rQjYVJAaogwyRqBwPcJHsqzuXNVstZZhUK0akO6P5sZM0nHYSmJSNE99LXnN6p1UbBKSTWb6CX9zY9oGDuBK+0/5x5aRCr2pJbeIiuiZUMpF1n; + Expires=Fri, 14 Oct 2022 15:25:45 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=uNSjyJFo89AE9z8RXJR6OQBaFVjiMcMHIEyCxwNoeglSletRlTAj5RJYS6nH7znTJs6694bVqfFYu39/RCnqA3LBXYA5Y/KNK2tEz3EJYbPLAysik4v8NvQpJQ2wyPOu6K+SjrxMpL+IMsTYucQMJEyEgtEVN/sZfeIc+xsNNFle; + Expires=Fri, 14 Oct 2022 15:25:45 GMT; Path=/ + - AWSALBTGCORS=uNSjyJFo89AE9z8RXJR6OQBaFVjiMcMHIEyCxwNoeglSletRlTAj5RJYS6nH7znTJs6694bVqfFYu39/RCnqA3LBXYA5Y/KNK2tEz3EJYbPLAysik4v8NvQpJQ2wyPOu6K+SjrxMpL+IMsTYucQMJEyEgtEVN/sZfeIc+xsNNFle; + Expires=Fri, 14 Oct 2022 15:25:45 GMT; Path=/; SameSite=None; Secure + - csrftoken=tN3Q21mzDgVkv77WdJFdAetACE2fAW7JmMHTwILhjV8KLMHmtGzDu6lAt2VcoAZT; + expires=Fri, 06 Oct 2023 15:25:47 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=wpmp3jzp0fllnncmm0bybmjuv11fz6vp; expires=Fri, 21 Oct 2022 15:25:47 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -59,23 +59,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9db735a4-66a3-4536-9117-a5ba68e428e2/","id":"9db735a4-66a3-4536-9117-a5ba68e428e2","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T19:31:40.770786Z","modified_at":"2022-01-04T19:31:46.564396Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 19:33:59 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/baa6ed4b-747e-4b4c-89f7-414d1b9fd64f/","id":"baa6ed4b-747e-4b4c-89f7-414d1b9fd64f","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:25:40.572384Z","modified_at":"2022-10-07T15:25:40.572384Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:25:47 GMT - request: method: delete - uri: https://api.cloudtruth.io/api/v1/projects/9db735a4-66a3-4536-9117-a5ba68e428e2/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/baa6ed4b-747e-4b4c-89f7-414d1b9fd64f/ body: encoding: US-ASCII string: '' @@ -83,7 +72,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Authorization: - Api-Key Accept-Encoding: @@ -96,23 +85,23 @@ http_interactions: message: No Content headers: Date: - - Tue, 04 Jan 2022 19:34:00 GMT + - Fri, 07 Oct 2022 15:25:48 GMT Content-Length: - '0' Connection: - keep-alive Set-Cookie: - - AWSALB=4yzTEXeUmpXKb4GVJp+DvpTRngNIYsXR7wVQxMrwvg+uLUr2Q+ocF+T7IZVlzFukTzsrKtke1FW6fUTAlJ/9PSj8hUiaHBtENHktYy19DS4KGnL8hYbDG4r6eoty; - Expires=Tue, 11 Jan 2022 19:33:59 GMT; Path=/ - - AWSALBCORS=4yzTEXeUmpXKb4GVJp+DvpTRngNIYsXR7wVQxMrwvg+uLUr2Q+ocF+T7IZVlzFukTzsrKtke1FW6fUTAlJ/9PSj8hUiaHBtENHktYy19DS4KGnL8hYbDG4r6eoty; - Expires=Tue, 11 Jan 2022 19:33:59 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=yobwErPThZZn+8zjA6akLXDkC5K7RLWR/0+uABn9icMUWcSmOEZUKs5AYth87WZgyXwnKigjEizgqw5H6QheRUfbZrliQQdVFp0uzXzLaIVJ7EvwNd2VHq+RLFJfddOyGDTV4IWBndT7fzv4D/0WK8pHvi3DCK7K5VG7u5bwW/+y; - Expires=Tue, 11 Jan 2022 19:33:59 GMT; Path=/ - - AWSALBTGCORS=yobwErPThZZn+8zjA6akLXDkC5K7RLWR/0+uABn9icMUWcSmOEZUKs5AYth87WZgyXwnKigjEizgqw5H6QheRUfbZrliQQdVFp0uzXzLaIVJ7EvwNd2VHq+RLFJfddOyGDTV4IWBndT7fzv4D/0WK8pHvi3DCK7K5VG7u5bwW/+y; - Expires=Tue, 11 Jan 2022 19:33:59 GMT; Path=/; SameSite=None; Secure - - csrftoken=WboHNru5Vx0Ty7VewcvvA0KAv3GxxbjmefpgD7mFT4zbxHwgH5StoRx3BhKzwVYr; - expires=Tue, 03 Jan 2023 19:34:00 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=gyx4eh4z97t15yyiuxhgnnv8djsy9yed; expires=Tue, 18 Jan 2022 19:34:00 + - AWSALB=2PRc8UjIAp0Ut5ZUX5yzuCKg16Jp3qiYi6nCDz1xVkCEExdjlwR3meF14noscMbNJCuFGfj0A0aZMpWipWf8M6hMGoLIJXIHGXszQqU3D8+z41ZnWyabow5lC0Xl; + Expires=Fri, 14 Oct 2022 15:25:47 GMT; Path=/ + - AWSALBCORS=2PRc8UjIAp0Ut5ZUX5yzuCKg16Jp3qiYi6nCDz1xVkCEExdjlwR3meF14noscMbNJCuFGfj0A0aZMpWipWf8M6hMGoLIJXIHGXszQqU3D8+z41ZnWyabow5lC0Xl; + Expires=Fri, 14 Oct 2022 15:25:47 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=bjr0GLDYWTalZS0PdMXYUElPu+vKCIwCSgbo4E9XwsVGcwZGTncrBk6Mja54XjUQaOBGFhwndT1yM9a100Dzrv0f6bDlU0tcQnymytl+1IAfRUr2DKhuY+oH6fMZF0xD7JomJ9q3BJBpyBgorOYcllv4dhDje2dn5ze4hWrHkDwO; + Expires=Fri, 14 Oct 2022 15:25:47 GMT; Path=/ + - AWSALBTGCORS=bjr0GLDYWTalZS0PdMXYUElPu+vKCIwCSgbo4E9XwsVGcwZGTncrBk6Mja54XjUQaOBGFhwndT1yM9a100Dzrv0f6bDlU0tcQnymytl+1IAfRUr2DKhuY+oH6fMZF0xD7JomJ9q3BJBpyBgorOYcllv4dhDje2dn5ze4hWrHkDwO; + Expires=Fri, 14 Oct 2022 15:25:47 GMT; Path=/; SameSite=None; Secure + - csrftoken=u3dYQLLplcgIOqxtzFG6FEdsVEv3JmeNOBzgf5QTvpeoECyXsovgE5yg4wMyZDHU; + expires=Fri, 06 Oct 2023 15:25:48 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=w0sngdgkzbay1jnt668w4gyehwnsgjiw; expires=Fri, 21 Oct 2022 15:25:48 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -131,10 +120,10 @@ http_interactions: body: encoding: UTF-8 string: '' - recorded_at: Tue, 04 Jan 2022 19:34:00 GMT + recorded_at: Fri, 07 Oct 2022 15:25:48 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: UTF-8 string: '{"name":"TestProject"}' @@ -142,7 +131,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -155,30 +144,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:34:00 GMT + - Fri, 07 Oct 2022 15:25:50 GMT Content-Type: - application/json Content-Length: - - '304' + - '365' Connection: - keep-alive Set-Cookie: - - AWSALB=6Np0l2tcLC+oPuE26Ky9P6cmHBIcGcF2SclaBE+jRJoL65hrl8vmF94o99ri1i1HNrdDpmI1+QdhvNierccaoLrLx4bE9RcxI1mdhO1oQzJ3t5UouM2WGW3tlixH; - Expires=Tue, 11 Jan 2022 19:34:00 GMT; Path=/ - - AWSALBCORS=6Np0l2tcLC+oPuE26Ky9P6cmHBIcGcF2SclaBE+jRJoL65hrl8vmF94o99ri1i1HNrdDpmI1+QdhvNierccaoLrLx4bE9RcxI1mdhO1oQzJ3t5UouM2WGW3tlixH; - Expires=Tue, 11 Jan 2022 19:34:00 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=5MRH+QARntxxwH/wPzigp7127Qa+N40UpM6AMaxy1GCIU+y4Ee3tzljN7w0rp2Y18KlN+8+ic1SvEG2GOeHAYcQZTSLEqBP9t0r+gkhwVlGNJZ78hPpaZkVTWKdfMEKRJIZhNfEXyf9amm5TGwNTb2Ak+tvhBVeGf2xpwmkRfgyw; - Expires=Tue, 11 Jan 2022 19:34:00 GMT; Path=/ - - AWSALBTGCORS=5MRH+QARntxxwH/wPzigp7127Qa+N40UpM6AMaxy1GCIU+y4Ee3tzljN7w0rp2Y18KlN+8+ic1SvEG2GOeHAYcQZTSLEqBP9t0r+gkhwVlGNJZ78hPpaZkVTWKdfMEKRJIZhNfEXyf9amm5TGwNTb2Ak+tvhBVeGf2xpwmkRfgyw; - Expires=Tue, 11 Jan 2022 19:34:00 GMT; Path=/; SameSite=None; Secure - - csrftoken=DX8AWRVzGOkmOtd8zvHJWpmUAMg4OxC0Lp3kgwzAE4Qd5eIwcDm9BeyEtkNWcHOn; - expires=Tue, 03 Jan 2023 19:34:00 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=9iiyhf65aw4l0bor64jybkr9eii6amn8; expires=Tue, 18 Jan 2022 19:34:00 + - AWSALB=niHuL09o2jBQykatFzUxBHy4m7dRd0Vle2gFP3X+a+JcAw/epWvJb1Bo6PZEvqrVrXxYUEEnphcN1GuRzlnlePAq/0Gp1ka4JybG0yGwnN6lerE+uv9pu3la+DtV; + Expires=Fri, 14 Oct 2022 15:25:48 GMT; Path=/ + - AWSALBCORS=niHuL09o2jBQykatFzUxBHy4m7dRd0Vle2gFP3X+a+JcAw/epWvJb1Bo6PZEvqrVrXxYUEEnphcN1GuRzlnlePAq/0Gp1ka4JybG0yGwnN6lerE+uv9pu3la+DtV; + Expires=Fri, 14 Oct 2022 15:25:48 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=9mQ7diIodgI6aw20QkUMX6XZ4afVVsiqlwH8mpFZF9hPHVZq8O7j5KNx5HULoQa6VeQ3m/LqedkF50ZJan1eCTKSB2uXeof/99ujGu4l41E/sfViGDndcVgOeFsqPCjyDQaRlSCHt3AVPUnBvvDIdcKoCPFsObQmkGWTwotNLLgy; + Expires=Fri, 14 Oct 2022 15:25:48 GMT; Path=/ + - AWSALBTGCORS=9mQ7diIodgI6aw20QkUMX6XZ4afVVsiqlwH8mpFZF9hPHVZq8O7j5KNx5HULoQa6VeQ3m/LqedkF50ZJan1eCTKSB2uXeof/99ujGu4l41E/sfViGDndcVgOeFsqPCjyDQaRlSCHt3AVPUnBvvDIdcKoCPFsObQmkGWTwotNLLgy; + Expires=Fri, 14 Oct 2022 15:25:48 GMT; Path=/; SameSite=None; Secure + - csrftoken=447N5TYOiLTc9xZa2puR48htyvIlkeakdEagUUcTLo3MntSpIdFmkmGtvrMgfu4u; + expires=Fri, 06 Oct 2023 15:25:50 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=242h02gq1lz2c4lo1bbpnmnokd5w36v9; expires=Fri, 21 Oct 2022 15:25:50 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/5801b9c9-aaec-4275-b71d-cc62a7fa8c87/ + - https://api.staging.cloudtruth.io/api/v1/projects/49aa5693-f10a-4a1c-ae91-205291d9924b/ Vary: - Accept, Cookie, Origin Allow: @@ -193,11 +182,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/5801b9c9-aaec-4275-b71d-cc62a7fa8c87/","id":"5801b9c9-aaec-4275-b71d-cc62a7fa8c87","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T19:34:00.475693Z","modified_at":"2022-01-04T19:34:00.475693Z"}' - recorded_at: Tue, 04 Jan 2022 19:34:00 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/49aa5693-f10a-4a1c-ae91-205291d9924b/","id":"49aa5693-f10a-4a1c-ae91-205291d9924b","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:25:50.522421Z","modified_at":"2022-10-07T15:25:50.522421Z"}' + recorded_at: Fri, 07 Oct 2022 15:25:50 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -205,7 +194,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -218,25 +207,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:34:01 GMT + - Fri, 07 Oct 2022 15:25:52 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=a8NaQBc7OK7V126HRUSD+EDobPC5jTmi5LXhKe+/vGsJiT5sgj57FdUXLvTCXs0sp32RjTchn6hTaw7LBwjoOsUClhmufgnOiN7HgrJb2XD+dUwrmbW7ciiEjh1a; - Expires=Tue, 11 Jan 2022 19:34:00 GMT; Path=/ - - AWSALBCORS=a8NaQBc7OK7V126HRUSD+EDobPC5jTmi5LXhKe+/vGsJiT5sgj57FdUXLvTCXs0sp32RjTchn6hTaw7LBwjoOsUClhmufgnOiN7HgrJb2XD+dUwrmbW7ciiEjh1a; - Expires=Tue, 11 Jan 2022 19:34:00 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=djqwVEK7MY0o4BaQbm5Y3DJjEvJatF3zxU6XK43SOO/wpVemv9MtrLiceqREsRmkG5WvKW8dS+PWH//ck7+Mhe0cwgXMmewXb45Ut0iKcVhajClNRrXs9Of28xjEgy8OD9LoMNslChS4D3XjThziHJ09ryiAxBCznM6JcmMylOu4; - Expires=Tue, 11 Jan 2022 19:34:00 GMT; Path=/ - - AWSALBTGCORS=djqwVEK7MY0o4BaQbm5Y3DJjEvJatF3zxU6XK43SOO/wpVemv9MtrLiceqREsRmkG5WvKW8dS+PWH//ck7+Mhe0cwgXMmewXb45Ut0iKcVhajClNRrXs9Of28xjEgy8OD9LoMNslChS4D3XjThziHJ09ryiAxBCznM6JcmMylOu4; - Expires=Tue, 11 Jan 2022 19:34:00 GMT; Path=/; SameSite=None; Secure - - csrftoken=pIonk0tgnAlxSYITlf2zbXIOXnsBbXUflMA0Ps8L70EcALmmQ4Q1bZboJ4xaolen; - expires=Tue, 03 Jan 2023 19:34:01 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=35yjriafxheeye4kaa5s2g5batmulvcm; expires=Tue, 18 Jan 2022 19:34:01 + - AWSALB=NK+vSVlzUrDad4B0Upnj6fwiX18tle4Z+BmJC57K1s90+6rOAu+fYf//yjphgoWc/iytpDeTSkDnWvpbaGxaaEMnCEGlmeUc8PxVX4oMkVlZ87DtuzxcQXqGtqtA; + Expires=Fri, 14 Oct 2022 15:25:50 GMT; Path=/ + - AWSALBCORS=NK+vSVlzUrDad4B0Upnj6fwiX18tle4Z+BmJC57K1s90+6rOAu+fYf//yjphgoWc/iytpDeTSkDnWvpbaGxaaEMnCEGlmeUc8PxVX4oMkVlZ87DtuzxcQXqGtqtA; + Expires=Fri, 14 Oct 2022 15:25:50 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=5lxfrpfKW+MV0lliRiztSybs4vhenUkQfpNfIjn22aGPcasr1XN85/SqVyifg0fbnHLBo5ob705kCdLAVqMeQZHFJT1Kkkv6UOwIOgEuhLb78QSD86ThN7WRiBknRUf3lTFimVg0yquUmWklI6MYPjjFr6AEM9LHReuBx2s3FHpc; + Expires=Fri, 14 Oct 2022 15:25:50 GMT; Path=/ + - AWSALBTGCORS=5lxfrpfKW+MV0lliRiztSybs4vhenUkQfpNfIjn22aGPcasr1XN85/SqVyifg0fbnHLBo5ob705kCdLAVqMeQZHFJT1Kkkv6UOwIOgEuhLb78QSD86ThN7WRiBknRUf3lTFimVg0yquUmWklI6MYPjjFr6AEM9LHReuBx2s3FHpc; + Expires=Fri, 14 Oct 2022 15:25:50 GMT; Path=/; SameSite=None; Secure + - csrftoken=cVqnNgBJmG3xsoLztPvms9cWryaixKiTjg1CnQo4e4eLE4cw1qeTUGCoAWotvG59; + expires=Fri, 06 Oct 2023 15:25:52 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=9pi1aba8djcdelzks28ue7ii4dtz9q06; expires=Fri, 21 Oct 2022 15:25:52 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -254,23 +243,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5801b9c9-aaec-4275-b71d-cc62a7fa8c87/","id":"5801b9c9-aaec-4275-b71d-cc62a7fa8c87","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T19:34:00.475693Z","modified_at":"2022-01-04T19:34:00.475693Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 19:34:01 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/49aa5693-f10a-4a1c-ae91-205291d9924b/","id":"49aa5693-f10a-4a1c-ae91-205291d9924b","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:25:50.522421Z","modified_at":"2022-10-07T15:25:50.522421Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:25:52 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/5801b9c9-aaec-4275-b71d-cc62a7fa8c87/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/49aa5693-f10a-4a1c-ae91-205291d9924b/parameters/ body: encoding: UTF-8 string: '{"name":"one","type":"string"}' @@ -278,7 +256,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -291,30 +269,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:34:01 GMT + - Fri, 07 Oct 2022 15:25:53 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=yVY9iLu9Mm/9Mr7Q9jwHdNoWcaGzAuXHssTsU6dJWcOteiYi5NiRSd3CW38TD3E6Dd+IjOsIQNf4yIQeh3QhXJhfkukKlqyNTMSwOrMy10/BPlwIWfcAEixsPB/q; - Expires=Tue, 11 Jan 2022 19:34:01 GMT; Path=/ - - AWSALBCORS=yVY9iLu9Mm/9Mr7Q9jwHdNoWcaGzAuXHssTsU6dJWcOteiYi5NiRSd3CW38TD3E6Dd+IjOsIQNf4yIQeh3QhXJhfkukKlqyNTMSwOrMy10/BPlwIWfcAEixsPB/q; - Expires=Tue, 11 Jan 2022 19:34:01 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=FD0FGyOymVEkbppkQ+yoLONWj/lOZbBoYE9Y2bwYiR5llWwiCRcKN1msn49a7ads6EUQOTj4+8PPMcEoirkpkOTFYXM17O/0H877sbtOnDYs1Ysa1XYKx/p5AjYujseoxd5UjLEngtCGc5Yf9ioIbd7TGRQArrvydPooea3fLhs+; - Expires=Tue, 11 Jan 2022 19:34:01 GMT; Path=/ - - AWSALBTGCORS=FD0FGyOymVEkbppkQ+yoLONWj/lOZbBoYE9Y2bwYiR5llWwiCRcKN1msn49a7ads6EUQOTj4+8PPMcEoirkpkOTFYXM17O/0H877sbtOnDYs1Ysa1XYKx/p5AjYujseoxd5UjLEngtCGc5Yf9ioIbd7TGRQArrvydPooea3fLhs+; - Expires=Tue, 11 Jan 2022 19:34:01 GMT; Path=/; SameSite=None; Secure - - csrftoken=SBqjUbizD6fS8aS6mnUbbhBRWxodD6epVEm7WEWsWJc3Td7GR2nqpfNW6Vdx1iih; - expires=Tue, 03 Jan 2023 19:34:01 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=749epzcb2jhf6q00w6igbs32ufn7zy2i; expires=Tue, 18 Jan 2022 19:34:01 + - AWSALB=8Ye5AHJzksiHb+KwCnqL1OEqT3K7PsCVH0tnmsjoDyMZBLx+RJyaIhIvt621JvJsj8xhSZ54TYjPNMM3imJbJ8W+1X6Q14qGPIuBcNS8xYrtiFobSlIwULuqfxzP; + Expires=Fri, 14 Oct 2022 15:25:52 GMT; Path=/ + - AWSALBCORS=8Ye5AHJzksiHb+KwCnqL1OEqT3K7PsCVH0tnmsjoDyMZBLx+RJyaIhIvt621JvJsj8xhSZ54TYjPNMM3imJbJ8W+1X6Q14qGPIuBcNS8xYrtiFobSlIwULuqfxzP; + Expires=Fri, 14 Oct 2022 15:25:52 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=1hXY/6GEIOS/zHyt+/bfOeN07LvtJKYEgWGBOOFaGZ/cy0QWI9MZ1ZbNNBaPxpBcFRXLzfUXFxx7aeuY+ejFHwAPxecbuH+DzB87/J5OaQH3QQabJvawzldXjLmnna3qvTa1th5nsgaDxVWTPCPUSlFuu7sjDndJgA9GBeeDYJ2i; + Expires=Fri, 14 Oct 2022 15:25:52 GMT; Path=/ + - AWSALBTGCORS=1hXY/6GEIOS/zHyt+/bfOeN07LvtJKYEgWGBOOFaGZ/cy0QWI9MZ1ZbNNBaPxpBcFRXLzfUXFxx7aeuY+ejFHwAPxecbuH+DzB87/J5OaQH3QQabJvawzldXjLmnna3qvTa1th5nsgaDxVWTPCPUSlFuu7sjDndJgA9GBeeDYJ2i; + Expires=Fri, 14 Oct 2022 15:25:52 GMT; Path=/; SameSite=None; Secure + - csrftoken=BkM0bFZ67dZCjtux7ULPbe8y93ujlFwnX5ws4mQ5W4M1Cs25Sg2qqwHWDFFNYHeL; + expires=Fri, 06 Oct 2023 15:25:53 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=21mpyv0poey85uz0plbfuphx6j3ldsfv; expires=Fri, 21 Oct 2022 15:25:53 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/5801b9c9-aaec-4275-b71d-cc62a7fa8c87/parameters/06fa5946-dcce-48ef-96eb-8dceda2746fb/ + - https://api.staging.cloudtruth.io/api/v1/projects/49aa5693-f10a-4a1c-ae91-205291d9924b/parameters/bd269953-3e6f-4bc4-8f9d-1f8be04199d2/ Vary: - Accept, Cookie, Origin Allow: @@ -329,11 +307,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/5801b9c9-aaec-4275-b71d-cc62a7fa8c87/parameters/06fa5946-dcce-48ef-96eb-8dceda2746fb/","id":"06fa5946-dcce-48ef-96eb-8dceda2746fb","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/5801b9c9-aaec-4275-b71d-cc62a7fa8c87/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T19:34:01.809741Z","modified_at":"2022-01-04T19:34:01.809741Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 19:34:01 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/49aa5693-f10a-4a1c-ae91-205291d9924b/parameters/bd269953-3e6f-4bc4-8f9d-1f8be04199d2/","id":"bd269953-3e6f-4bc4-8f9d-1f8be04199d2","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/49aa5693-f10a-4a1c-ae91-205291d9924b/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:25:53.902983Z","modified_at":"2022-10-07T15:25:53.902983Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:25:53 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/5801b9c9-aaec-4275-b71d-cc62a7fa8c87/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/49aa5693-f10a-4a1c-ae91-205291d9924b/parameters/ body: encoding: UTF-8 string: '{"name":"two","type":"string"}' @@ -341,7 +319,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -354,30 +332,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:34:02 GMT + - Fri, 07 Oct 2022 15:25:55 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=BnUMFGMyAfrvLJlHMpZpHKOWanANtHOp6OcuDIQlRCRzg3jhJO45CYx6eOW8TsVvxeOH3cOOyJbHB5HnESkOFKrCre/4Mn3SmyiqARRc6F59zLowW0E3lfPfJCfH; - Expires=Tue, 11 Jan 2022 19:34:02 GMT; Path=/ - - AWSALBCORS=BnUMFGMyAfrvLJlHMpZpHKOWanANtHOp6OcuDIQlRCRzg3jhJO45CYx6eOW8TsVvxeOH3cOOyJbHB5HnESkOFKrCre/4Mn3SmyiqARRc6F59zLowW0E3lfPfJCfH; - Expires=Tue, 11 Jan 2022 19:34:02 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=/0dK3YlEds2ijqgx39cM1ZAAmFkUQAldWvoQOrq13JpMBPpu9gckNcxFd2sTbenb+aumNCPRjzRMQRFc6eZx5MWdlKTNtVts1bY13mkR4D3u8X7VpaEPPc5+ttOg681ldenGlDg1GhQAxgbM+J7y1lY6V+yU2IujRn0RhHlGHzLH; - Expires=Tue, 11 Jan 2022 19:34:02 GMT; Path=/ - - AWSALBTGCORS=/0dK3YlEds2ijqgx39cM1ZAAmFkUQAldWvoQOrq13JpMBPpu9gckNcxFd2sTbenb+aumNCPRjzRMQRFc6eZx5MWdlKTNtVts1bY13mkR4D3u8X7VpaEPPc5+ttOg681ldenGlDg1GhQAxgbM+J7y1lY6V+yU2IujRn0RhHlGHzLH; - Expires=Tue, 11 Jan 2022 19:34:02 GMT; Path=/; SameSite=None; Secure - - csrftoken=sPm4zTuIKB9FiG8xDB97Q21kgT5v6wvdrl1ZycZ48Rze04mL1syZrxAiWrzwy5mw; - expires=Tue, 03 Jan 2023 19:34:02 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=hap6frpsval2g92h14ixcfx38fihdqpl; expires=Tue, 18 Jan 2022 19:34:02 + - AWSALB=gFPDXYuq1dK0ejjOqhnHwPoDFCXGRJai1vK/x+AwDtqG5ZHrjA842lCJp/tr+Gi73cWw8QdNYU3p6Z/JpeCbQ4EnVfSl5Bq1aFBJ9BvFCo+QLm+jDkCMfo9N128z; + Expires=Fri, 14 Oct 2022 15:25:54 GMT; Path=/ + - AWSALBCORS=gFPDXYuq1dK0ejjOqhnHwPoDFCXGRJai1vK/x+AwDtqG5ZHrjA842lCJp/tr+Gi73cWw8QdNYU3p6Z/JpeCbQ4EnVfSl5Bq1aFBJ9BvFCo+QLm+jDkCMfo9N128z; + Expires=Fri, 14 Oct 2022 15:25:54 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=Q85u+q3RalRsdUMQjpYKqCd7YSThqcJgHuzEtcVYBLWOtpZKV2WPllySUFrYdns5N+QF9wuE2hFmU/kJI/fTvnk74+6YPJcsj4cCrC8KusMhWCDKZyX4TPKoSbNAydGurAuVFUwoIQ9vMxNkLNWo2azI/OGCfnLaBK+ccSm1x+nq; + Expires=Fri, 14 Oct 2022 15:25:54 GMT; Path=/ + - AWSALBTGCORS=Q85u+q3RalRsdUMQjpYKqCd7YSThqcJgHuzEtcVYBLWOtpZKV2WPllySUFrYdns5N+QF9wuE2hFmU/kJI/fTvnk74+6YPJcsj4cCrC8KusMhWCDKZyX4TPKoSbNAydGurAuVFUwoIQ9vMxNkLNWo2azI/OGCfnLaBK+ccSm1x+nq; + Expires=Fri, 14 Oct 2022 15:25:54 GMT; Path=/; SameSite=None; Secure + - csrftoken=RdWn7pNja9bJVxJQvPaP7WgGqHhT19jDgurigYg0LtloWN4St4awAAzFc4kncQbg; + expires=Fri, 06 Oct 2023 15:25:55 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=koudzfe0pst9ok6mdrj2og5ftchaxovm; expires=Fri, 21 Oct 2022 15:25:55 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/5801b9c9-aaec-4275-b71d-cc62a7fa8c87/parameters/cfc33dd1-9cb7-402d-9216-054853e92c5e/ + - https://api.staging.cloudtruth.io/api/v1/projects/49aa5693-f10a-4a1c-ae91-205291d9924b/parameters/60f5337a-65f5-4d22-a4aa-cf2423fd7f20/ Vary: - Accept, Cookie, Origin Allow: @@ -392,11 +370,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/5801b9c9-aaec-4275-b71d-cc62a7fa8c87/parameters/cfc33dd1-9cb7-402d-9216-054853e92c5e/","id":"cfc33dd1-9cb7-402d-9216-054853e92c5e","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/5801b9c9-aaec-4275-b71d-cc62a7fa8c87/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T19:34:02.450784Z","modified_at":"2022-01-04T19:34:02.450784Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 19:34:02 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/49aa5693-f10a-4a1c-ae91-205291d9924b/parameters/60f5337a-65f5-4d22-a4aa-cf2423fd7f20/","id":"60f5337a-65f5-4d22-a4aa-cf2423fd7f20","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/49aa5693-f10a-4a1c-ae91-205291d9924b/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:25:55.465203Z","modified_at":"2022-10-07T15:25:55.465203Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:25:55 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/environments/ + uri: https://api.staging.cloudtruth.io/api/v1/environments/ body: encoding: US-ASCII string: '' @@ -404,7 +382,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -417,25 +395,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:34:03 GMT + - Fri, 07 Oct 2022 15:25:56 GMT Content-Type: - application/json Content-Length: - - '4139' + - '2085' Connection: - keep-alive Set-Cookie: - - AWSALB=m0sGCNdXbUbNU1qdwYxZBmLw6NYMwTbeH2OBMUre1zGXMHZKFo7eNe9ey33rKtahg5YibPHyV883CDEmNHGdcY0KfLeqN3BXXFx9PltlPofNIq7hJQdlfuYOvc1z; - Expires=Tue, 11 Jan 2022 19:34:02 GMT; Path=/ - - AWSALBCORS=m0sGCNdXbUbNU1qdwYxZBmLw6NYMwTbeH2OBMUre1zGXMHZKFo7eNe9ey33rKtahg5YibPHyV883CDEmNHGdcY0KfLeqN3BXXFx9PltlPofNIq7hJQdlfuYOvc1z; - Expires=Tue, 11 Jan 2022 19:34:02 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=JontK8AHaP0hAYhZJ/KfH+j48Kf6H9aMlFOe+S01KOu5oU5VAU6vBQcrM9IWoBKDrqYk8de2e107nfEppMlXATwAfc1xj+P/+MPCxkoYpVU2kx32ymU709lxa9Omx9Zp0ZJ7AVEuoZ0uyOKZaiikYeqWUeMZ76FzvHnUPjs8ISAV; - Expires=Tue, 11 Jan 2022 19:34:02 GMT; Path=/ - - AWSALBTGCORS=JontK8AHaP0hAYhZJ/KfH+j48Kf6H9aMlFOe+S01KOu5oU5VAU6vBQcrM9IWoBKDrqYk8de2e107nfEppMlXATwAfc1xj+P/+MPCxkoYpVU2kx32ymU709lxa9Omx9Zp0ZJ7AVEuoZ0uyOKZaiikYeqWUeMZ76FzvHnUPjs8ISAV; - Expires=Tue, 11 Jan 2022 19:34:02 GMT; Path=/; SameSite=None; Secure - - csrftoken=cqSTZ93MdeHKQrvP5K6JDLzx90YYibBmmHfY0xfFxJTd1rsDogaCDb4YwUNX5X5M; - expires=Tue, 03 Jan 2023 19:34:03 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=f2ct3b9c8u2h67qxqkmrxcbzv8gd5vji; expires=Tue, 18 Jan 2022 19:34:03 + - AWSALB=JyLN39ZRIEZLJCbL1E8C+/yaYf0R72FcD9Kegd4/MBLhkD96ajQ4+n+sltfIluOymDAmFpaL9ugN0g0QUiazfNVGpzHDtojNwMTjT849PbtDgRuCWYDV8KuIWd5X; + Expires=Fri, 14 Oct 2022 15:25:55 GMT; Path=/ + - AWSALBCORS=JyLN39ZRIEZLJCbL1E8C+/yaYf0R72FcD9Kegd4/MBLhkD96ajQ4+n+sltfIluOymDAmFpaL9ugN0g0QUiazfNVGpzHDtojNwMTjT849PbtDgRuCWYDV8KuIWd5X; + Expires=Fri, 14 Oct 2022 15:25:55 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=sUY882V9Y5CuNWtY7UMCGrRquFdz5mHO7tw2XMjQguIgwn0T/++JDYfxxLOsJPLPcDO2SZRxGmLNGjtSAo8pBp44EKvHoK20fmTI5KxeECZgGFVuJJGilmiZyoIWKJwK8EqTwuan0O3xBt1cd7EVBA5RqZvZ6IcyTxNbI17mM3yJ; + Expires=Fri, 14 Oct 2022 15:25:55 GMT; Path=/ + - AWSALBTGCORS=sUY882V9Y5CuNWtY7UMCGrRquFdz5mHO7tw2XMjQguIgwn0T/++JDYfxxLOsJPLPcDO2SZRxGmLNGjtSAo8pBp44EKvHoK20fmTI5KxeECZgGFVuJJGilmiZyoIWKJwK8EqTwuan0O3xBt1cd7EVBA5RqZvZ6IcyTxNbI17mM3yJ; + Expires=Fri, 14 Oct 2022 15:25:55 GMT; Path=/; SameSite=None; Secure + - csrftoken=tKwyutqbQkYM6wl0OjsAqmIWjWkGk4rofzOayN7CkVlTWQGohGxhwIssEYEvA1Io; + expires=Fri, 06 Oct 2023 15:25:56 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=8qsgkaix0t0tumad67rmeejq3wevyijm; expires=Fri, 21 Oct 2022 15:25:56 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -453,16 +431,15 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":9,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","id":"e8bc190d-0354-4e66-91c9-64501e501ec5","name":"default","description":"The - auto-generated default environment.","parent":null,"children":["https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/"],"created_at":"2021-07-20T18:14:09.023022Z","modified_at":"2022-01-04T19:31:46.564396Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","id":"c4de304d-5dd4-4a41-80ec-9a469f1aa4f5","name":"development","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/"],"created_at":"2021-07-20T18:14:09.035255Z","modified_at":"2022-01-04T17:38:49.782969Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/","id":"12b9c81b-9002-423b-9ca7-22cece646d07","name":"dev-matt","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","children":[],"created_at":"2021-07-21T19:53:37.534082Z","modified_at":"2021-07-26T22:01:23.472634Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","id":"2281d9da-8376-4f45-baf2-372a71260dfa","name":"europe","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T19:53:47.438517Z","modified_at":"2021-07-26T22:01:29.331661Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","id":"c99d6ab9-4674-4f76-bb43-da0b19124e18","name":"local","description":"for - local development","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T19:53:50.000541Z","modified_at":"2021-07-26T22:01:32.150839Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","id":"ef133a2e-3c9c-4229-a509-e56332baff40","name":"ops","description":"The - ops environment - infrastructure that acts as the entry point to the other - environment''s infrastructure","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T20:05:10.325110Z","modified_at":"2021-07-26T22:01:35.184068Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","id":"cde7cf9d-8bf2-46cb-9e97-dee9b99e4335","name":"production","description":"for - real","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/"],"created_at":"2021-07-20T18:14:09.058957Z","modified_at":"2021-10-26T18:14:38.859067Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/","id":"e4399ff4-a962-451b-adfb-7e504ad6bb6d","name":"staging","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-20T18:14:09.047049Z","modified_at":"2021-07-26T18:46:21.385162Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/","id":"3afc0523-4722-4fa1-aaea-5d49beaa284d","name":"usa","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T20:05:24.767679Z","modified_at":"2021-07-26T18:44:51.186840Z"}]}' - recorded_at: Tue, 04 Jan 2022 19:34:03 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","id":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","name":"default","description":"Default + environment, base for all environments.","parent":null,"children":["https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/"],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.112161Z","modified_at":"2022-06-02T17:13:09.641786Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","id":"8f2e37b9-b429-4987-bb85-abd24bd67274","name":"development","description":"Development + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.123839Z","modified_at":"2022-06-02T17:11:55.123839Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","id":"0663ac09-5883-452b-bc1a-00e3347fece5","name":"production","description":"Production + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.145580Z","modified_at":"2022-06-02T17:11:55.145580Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/","id":"fc970cc2-c24f-427d-9c7a-70acde9f1b64","name":"staging","description":"Staging + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.134547Z","modified_at":"2022-06-02T17:11:55.134547Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:25:56 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/5801b9c9-aaec-4275-b71d-cc62a7fa8c87/parameters/?environment=e8bc190d-0354-4e66-91c9-64501e501ec5 + uri: https://api.staging.cloudtruth.io/api/v1/projects/49aa5693-f10a-4a1c-ae91-205291d9924b/parameters/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76 body: encoding: US-ASCII string: '' @@ -470,7 +447,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -483,25 +460,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:34:03 GMT + - Fri, 07 Oct 2022 15:25:58 GMT Content-Type: - application/json Content-Length: - - '1311' + - '1393' Connection: - keep-alive Set-Cookie: - - AWSALB=rq37Wg2RuBs/dcXu8wfpWZRe8QOEMUjtg7Go2ikBOQu8fG9HXza0YwExwR1mVt0cGS5oFmO/UFYV090/6TQuciE02nREVWEM+zq1NOJZxsZiIzPTMUPbRuNCJQ/H; - Expires=Tue, 11 Jan 2022 19:34:03 GMT; Path=/ - - AWSALBCORS=rq37Wg2RuBs/dcXu8wfpWZRe8QOEMUjtg7Go2ikBOQu8fG9HXza0YwExwR1mVt0cGS5oFmO/UFYV090/6TQuciE02nREVWEM+zq1NOJZxsZiIzPTMUPbRuNCJQ/H; - Expires=Tue, 11 Jan 2022 19:34:03 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=XrJQHaM9Ypa9Jn9NQ0VsSTlvEhMdWA7zd+9OWkuE4TcA0euPt5XrK3QwOxCdje6wkDg4y9k6mDkPPwzq3yczsWffVxZxI1fewsPTOdox60EK/T3muGBXGtu+tQQbYn3pGXrfs2Hc4KNtFaaQ2xn8c+A3bJ7RAQ8smO7IiHAOyNGM; - Expires=Tue, 11 Jan 2022 19:34:03 GMT; Path=/ - - AWSALBTGCORS=XrJQHaM9Ypa9Jn9NQ0VsSTlvEhMdWA7zd+9OWkuE4TcA0euPt5XrK3QwOxCdje6wkDg4y9k6mDkPPwzq3yczsWffVxZxI1fewsPTOdox60EK/T3muGBXGtu+tQQbYn3pGXrfs2Hc4KNtFaaQ2xn8c+A3bJ7RAQ8smO7IiHAOyNGM; - Expires=Tue, 11 Jan 2022 19:34:03 GMT; Path=/; SameSite=None; Secure - - csrftoken=hxQdBTdlb45lyDlqD5CGKauBaGiczWstan5NM09Cbjoc1d5Y3Vie5zHW8TKCiep2; - expires=Tue, 03 Jan 2023 19:34:03 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=wa0r1uuqm1zj5tnuvrevku8lm034hxp1; expires=Tue, 18 Jan 2022 19:34:03 + - AWSALB=jJu1mx5n7gvat+wVKZyAa8VfsDdsP3TwrH1NDLmsQtyhnUe1Lf/UshEgyNdsnq+gLoo08UrByjRpknpKGEx1z23w55j23de4NnjZf/G4QkFV4rIuEckK6L6rBqKM; + Expires=Fri, 14 Oct 2022 15:25:57 GMT; Path=/ + - AWSALBCORS=jJu1mx5n7gvat+wVKZyAa8VfsDdsP3TwrH1NDLmsQtyhnUe1Lf/UshEgyNdsnq+gLoo08UrByjRpknpKGEx1z23w55j23de4NnjZf/G4QkFV4rIuEckK6L6rBqKM; + Expires=Fri, 14 Oct 2022 15:25:57 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=rXJ4tBHWv5lj+4l9w780G3kqLpC5mt7FWtBWt9rhgclByxBZc0F/4dLX6DBUQCvd/PSwlEFge3W+tPyYOWiXixW8osK5PxZydZHYpugEl9gFk7W+rIBs5rlgcNPk7jia9dVT5DZ+N5ATHD0kmB++z/9fsbey1Kgs682QEB64NDcq; + Expires=Fri, 14 Oct 2022 15:25:57 GMT; Path=/ + - AWSALBTGCORS=rXJ4tBHWv5lj+4l9w780G3kqLpC5mt7FWtBWt9rhgclByxBZc0F/4dLX6DBUQCvd/PSwlEFge3W+tPyYOWiXixW8osK5PxZydZHYpugEl9gFk7W+rIBs5rlgcNPk7jia9dVT5DZ+N5ATHD0kmB++z/9fsbey1Kgs682QEB64NDcq; + Expires=Fri, 14 Oct 2022 15:25:57 GMT; Path=/; SameSite=None; Secure + - csrftoken=jSCg6Isg3cUvsVcGys5JFg9mYJ6MZJcuajpYMaRcgEFf0cofGKZlasvl3dohZ1M8; + expires=Fri, 06 Oct 2023 15:25:58 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=0og3k22s2d5habq9nnuz94ddnd8atfic; expires=Fri, 21 Oct 2022 15:25:58 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -519,6 +496,6 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/5801b9c9-aaec-4275-b71d-cc62a7fa8c87/parameters/06fa5946-dcce-48ef-96eb-8dceda2746fb/","id":"06fa5946-dcce-48ef-96eb-8dceda2746fb","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/5801b9c9-aaec-4275-b71d-cc62a7fa8c87/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null},"created_at":"2022-01-04T19:34:01.809741Z","modified_at":"2022-01-04T19:34:01.809741Z","templates":[]},{"url":"https://api.cloudtruth.io/api/v1/projects/5801b9c9-aaec-4275-b71d-cc62a7fa8c87/parameters/cfc33dd1-9cb7-402d-9216-054853e92c5e/","id":"cfc33dd1-9cb7-402d-9216-054853e92c5e","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/5801b9c9-aaec-4275-b71d-cc62a7fa8c87/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null},"created_at":"2022-01-04T19:34:02.450784Z","modified_at":"2022-01-04T19:34:02.450784Z","templates":[]}]}' - recorded_at: Tue, 04 Jan 2022 19:34:03 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/49aa5693-f10a-4a1c-ae91-205291d9924b/parameters/bd269953-3e6f-4bc4-8f9d-1f8be04199d2/","id":"bd269953-3e6f-4bc4-8f9d-1f8be04199d2","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/49aa5693-f10a-4a1c-ae91-205291d9924b/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null},"overrides":null,"created_at":"2022-10-07T15:25:53.902983Z","modified_at":"2022-10-07T15:25:53.902983Z","templates":[]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/49aa5693-f10a-4a1c-ae91-205291d9924b/parameters/60f5337a-65f5-4d22-a4aa-cf2423fd7f20/","id":"60f5337a-65f5-4d22-a4aa-cf2423fd7f20","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/49aa5693-f10a-4a1c-ae91-205291d9924b/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null},"overrides":null,"created_at":"2022-10-07T15:25:55.465203Z","modified_at":"2022-10-07T15:25:55.465203Z","templates":[]}]}' + recorded_at: Fri, 07 Oct 2022 15:25:58 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_parameters_by_tag.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_parameters_by_tag.yml index 43d0f97..8c9232d 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_parameters_by_tag.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_parameters_by_tag.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -10,7 +10,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -23,25 +23,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:47:02 GMT + - Fri, 07 Oct 2022 15:26:00 GMT Content-Type: - application/json Content-Length: - - '7490' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=/T0NvGG4DUAXXpd/TW9bGdzqTDuCYSVv86TV/RRFcKx+ZHNiG1UQQplvGYz5j2FM1Ys2mvhZrUAP2I1JlBYeJOodrI/725opZ9WwcByXq56PnL7e0Ndr+WWsOSoZ; - Expires=Tue, 11 Jan 2022 19:47:01 GMT; Path=/ - - AWSALBCORS=/T0NvGG4DUAXXpd/TW9bGdzqTDuCYSVv86TV/RRFcKx+ZHNiG1UQQplvGYz5j2FM1Ys2mvhZrUAP2I1JlBYeJOodrI/725opZ9WwcByXq56PnL7e0Ndr+WWsOSoZ; - Expires=Tue, 11 Jan 2022 19:47:01 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=sW4FceODBGdlxiNWxhIb+Vk65pZWtauzCDNIF/fvYxa5ZUUWwiirZH1BF2QJm8i5gi7846uGuQAm8UBZO+glrTiYueIYHdLZTjBshCKlX4nyvebbOCxGA/ucmT8n4cNCsnWdVN1CPv0d3diCqXaDw4voX0KLmzCV24MLorCkr5DD; - Expires=Tue, 11 Jan 2022 19:47:01 GMT; Path=/ - - AWSALBTGCORS=sW4FceODBGdlxiNWxhIb+Vk65pZWtauzCDNIF/fvYxa5ZUUWwiirZH1BF2QJm8i5gi7846uGuQAm8UBZO+glrTiYueIYHdLZTjBshCKlX4nyvebbOCxGA/ucmT8n4cNCsnWdVN1CPv0d3diCqXaDw4voX0KLmzCV24MLorCkr5DD; - Expires=Tue, 11 Jan 2022 19:47:01 GMT; Path=/; SameSite=None; Secure - - csrftoken=FaJX4Vnk1SLWJ9Axdj5mcAshJjdkLcc1iGpT5hYxov6Sn49XL5xoFLK5134jFjH2; - expires=Tue, 03 Jan 2023 19:47:02 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=v0z25xllyoejiineywv6u4ugi6jqcbmt; expires=Tue, 18 Jan 2022 19:47:02 + - AWSALB=LP4WO8jvA1mODBlbe+oHyEQj2zSSCvsijJ7xqY1tPGDSp7iTuIOrP9OFZvleTLxU4vobngh3elg4nwU9Sx7F/nVyQykt+JrFtqwIZFUaTZxHYHrNlbZsvArCEFfY; + Expires=Fri, 14 Oct 2022 15:25:58 GMT; Path=/ + - AWSALBCORS=LP4WO8jvA1mODBlbe+oHyEQj2zSSCvsijJ7xqY1tPGDSp7iTuIOrP9OFZvleTLxU4vobngh3elg4nwU9Sx7F/nVyQykt+JrFtqwIZFUaTZxHYHrNlbZsvArCEFfY; + Expires=Fri, 14 Oct 2022 15:25:58 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=2GMST/ZbotfkkhfJcjv5JIF/Iwa9tTC8f7WvyWJ5Sq7N8NVkXYUkGLMyyaN13uebuJdeJW8DEIfy3m8BImuMu1h59BXz1zYF5Swn73MiJkyn9NeIPp+vYGpB1qlUH5ga4VipVuwZKJzwlogovG/Mm2dUChhJbU3C2utcA85GSalL; + Expires=Fri, 14 Oct 2022 15:25:58 GMT; Path=/ + - AWSALBTGCORS=2GMST/ZbotfkkhfJcjv5JIF/Iwa9tTC8f7WvyWJ5Sq7N8NVkXYUkGLMyyaN13uebuJdeJW8DEIfy3m8BImuMu1h59BXz1zYF5Swn73MiJkyn9NeIPp+vYGpB1qlUH5ga4VipVuwZKJzwlogovG/Mm2dUChhJbU3C2utcA85GSalL; + Expires=Fri, 14 Oct 2022 15:25:58 GMT; Path=/; SameSite=None; Secure + - csrftoken=ifUWOkNMSEw6LCqOS9uLVTZh7WS0SEtwbrb2AWQCgkaiVtKMTlQKSk1KgGwZOhjI; + expires=Fri, 06 Oct 2023 15:26:00 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=z6gum6e3oe9szr6scoygv8iyfdpbcs0p; expires=Fri, 21 Oct 2022 15:26:00 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -59,23 +59,71 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":23,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 19:47:02 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/49aa5693-f10a-4a1c-ae91-205291d9924b/","id":"49aa5693-f10a-4a1c-ae91-205291d9924b","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:25:50.522421Z","modified_at":"2022-10-07T15:25:50.522421Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:26:00 GMT +- request: + method: delete + uri: https://api.staging.cloudtruth.io/api/v1/projects/49aa5693-f10a-4a1c-ae91-205291d9924b/ + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 204 + message: No Content + headers: + Date: + - Fri, 07 Oct 2022 15:26:01 GMT + Content-Length: + - '0' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=CAdV8aF1pU4mCbiNRIRgh4/KaBWjUrvWNabkxybsmRo70zhtUOOh0BUiJ3Eu84pIu9RLj5UvkcWYcPtyN/wFtF91JIJ9FS20KeaQANW7R5AV2+EUSKS+RjrjCKFf; + Expires=Fri, 14 Oct 2022 15:26:00 GMT; Path=/ + - AWSALBCORS=CAdV8aF1pU4mCbiNRIRgh4/KaBWjUrvWNabkxybsmRo70zhtUOOh0BUiJ3Eu84pIu9RLj5UvkcWYcPtyN/wFtF91JIJ9FS20KeaQANW7R5AV2+EUSKS+RjrjCKFf; + Expires=Fri, 14 Oct 2022 15:26:00 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=Y2Klk5GQRcii2kTjng1gtSnRRoWdqiOHjFlAPIKVLbtxuaHXpRgwdN6E19ZLuas8mbFfVtAqzjr7B1RBkU3l/nQRrOSIE7pKL7EB52gmXpOLzM8TSEGFVxC+Lwf/whiTn59+WGm2uicfGbZhJ++JVw9rB9Ju0rvHWOE+SY9sNuWh; + Expires=Fri, 14 Oct 2022 15:26:00 GMT; Path=/ + - AWSALBTGCORS=Y2Klk5GQRcii2kTjng1gtSnRRoWdqiOHjFlAPIKVLbtxuaHXpRgwdN6E19ZLuas8mbFfVtAqzjr7B1RBkU3l/nQRrOSIE7pKL7EB52gmXpOLzM8TSEGFVxC+Lwf/whiTn59+WGm2uicfGbZhJ++JVw9rB9Ju0rvHWOE+SY9sNuWh; + Expires=Fri, 14 Oct 2022 15:26:00 GMT; Path=/; SameSite=None; Secure + - csrftoken=OQ7hbXgHspSs0aXQOQWhbigl9jMdJUVyihoowk88icPo2gUFqiEa41rN3Br9SLhj; + expires=Fri, 06 Oct 2023 15:26:01 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=agts3quqyl1dkxqhs274kbtidxfh3vvp; expires=Fri, 21 Oct 2022 15:26:01 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '' + recorded_at: Fri, 07 Oct 2022 15:26:01 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: UTF-8 string: '{"name":"TestProject"}' @@ -83,7 +131,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -96,30 +144,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:47:02 GMT + - Fri, 07 Oct 2022 15:26:03 GMT Content-Type: - application/json Content-Length: - - '304' + - '365' Connection: - keep-alive Set-Cookie: - - AWSALB=TzshtFqHR/nV4tuvL8F39hlc8XgfxvfkA0QB5+xFb6yzLTVIExmXoj45rnMgX1p1SpsAJMX4KVUnbNrptfiU5U4lzMU61Mj26c9pWR7J90WLntR8qjZ63hU8IVvw; - Expires=Tue, 11 Jan 2022 19:47:02 GMT; Path=/ - - AWSALBCORS=TzshtFqHR/nV4tuvL8F39hlc8XgfxvfkA0QB5+xFb6yzLTVIExmXoj45rnMgX1p1SpsAJMX4KVUnbNrptfiU5U4lzMU61Mj26c9pWR7J90WLntR8qjZ63hU8IVvw; - Expires=Tue, 11 Jan 2022 19:47:02 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=+ajJvAXqUbXTc28lvCHNP/s/mNuNZsTmMhT3akDvLGHK+SOqZE/QkEISPTf9l9q0x0sADwSGPm+/n/XdvBixU58i5L72QKdZhmjWMzi/xKS5Y0zcRbn2aI6xEk8mqcIlr40iYi7JyRCc42S3L9VG4jqc5kDnLqdVx4fWUsRXdy9F; - Expires=Tue, 11 Jan 2022 19:47:02 GMT; Path=/ - - AWSALBTGCORS=+ajJvAXqUbXTc28lvCHNP/s/mNuNZsTmMhT3akDvLGHK+SOqZE/QkEISPTf9l9q0x0sADwSGPm+/n/XdvBixU58i5L72QKdZhmjWMzi/xKS5Y0zcRbn2aI6xEk8mqcIlr40iYi7JyRCc42S3L9VG4jqc5kDnLqdVx4fWUsRXdy9F; - Expires=Tue, 11 Jan 2022 19:47:02 GMT; Path=/; SameSite=None; Secure - - csrftoken=mDybaTjnrufcKPT103EXMgPRgLQK2Eb1ZylOwOgvCczu36qPVAw304RWXaY7OAaR; - expires=Tue, 03 Jan 2023 19:47:02 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=udqbucmb5q0cvx31a9iacysrs8lo8de5; expires=Tue, 18 Jan 2022 19:47:02 + - AWSALB=ZNOzHD3Suwj+Xb8ZpDJYvcgXEnuyQ/loiPLUJxa9GQgUi7rkdH4H2SojqGrkpeF7+RLpNCpCj6BpQIgCnojZMUUANBdKQr2uatXLXYHaAsRJ7XtXspWF/kww4AbC; + Expires=Fri, 14 Oct 2022 15:26:01 GMT; Path=/ + - AWSALBCORS=ZNOzHD3Suwj+Xb8ZpDJYvcgXEnuyQ/loiPLUJxa9GQgUi7rkdH4H2SojqGrkpeF7+RLpNCpCj6BpQIgCnojZMUUANBdKQr2uatXLXYHaAsRJ7XtXspWF/kww4AbC; + Expires=Fri, 14 Oct 2022 15:26:01 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=eyotDD502eLwAf2oe4esXY6RqbhfCyDNx6ZZ1ZwIoI9zEIDNJg5VsEL+bwwNEMLvW/R3we7zWHZsPWKNDxZcVdgMpZWYaYt7lh7aNuGu3HQqvSRg0Jdu2YoU1ReFPK6XzzSoqZEzTQAoGZPfqa0vG6ywihxuYnHw7JOj1c91axa6; + Expires=Fri, 14 Oct 2022 15:26:01 GMT; Path=/ + - AWSALBTGCORS=eyotDD502eLwAf2oe4esXY6RqbhfCyDNx6ZZ1ZwIoI9zEIDNJg5VsEL+bwwNEMLvW/R3we7zWHZsPWKNDxZcVdgMpZWYaYt7lh7aNuGu3HQqvSRg0Jdu2YoU1ReFPK6XzzSoqZEzTQAoGZPfqa0vG6ywihxuYnHw7JOj1c91axa6; + Expires=Fri, 14 Oct 2022 15:26:01 GMT; Path=/; SameSite=None; Secure + - csrftoken=fshrWgkb9jjhpEXTfBHwy6xdhaxPu7JRrJIA0XvoeP5DiZfigpZRi8w7w7aEfdrc; + expires=Fri, 06 Oct 2023 15:26:03 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=1iy58ufmqtgu6ts1o1a85pc52yamtw9p; expires=Fri, 21 Oct 2022 15:26:03 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/ + - https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/ Vary: - Accept, Cookie, Origin Allow: @@ -134,11 +182,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/","id":"1d0d7483-a453-4ccf-aed3-b67114844f32","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T19:47:02.578436Z","modified_at":"2022-01-04T19:47:02.578436Z"}' - recorded_at: Tue, 04 Jan 2022 19:47:02 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/","id":"0c512ad6-b6c0-4363-956e-5b9074640ef4","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:26:03.232573Z","modified_at":"2022-10-07T15:26:03.232573Z"}' + recorded_at: Fri, 07 Oct 2022 15:26:03 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -146,7 +194,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -159,25 +207,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:47:03 GMT + - Fri, 07 Oct 2022 15:26:04 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=LPZ/mvL07XJfRxSXs1hjDhg2TPJWRlOZjvIkwOZgoYzd6lRCXUAHaq4mWhOw2OrAm5sDksbjwI2Lg8GRPtI09Kblg06KuefENSrYbi/mWvAkAqf6EpWevutvpD2l; - Expires=Tue, 11 Jan 2022 19:47:02 GMT; Path=/ - - AWSALBCORS=LPZ/mvL07XJfRxSXs1hjDhg2TPJWRlOZjvIkwOZgoYzd6lRCXUAHaq4mWhOw2OrAm5sDksbjwI2Lg8GRPtI09Kblg06KuefENSrYbi/mWvAkAqf6EpWevutvpD2l; - Expires=Tue, 11 Jan 2022 19:47:02 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=+X753rANEjwQi1nIs/VBtLpAekEcXMbUCPOlNef+/yl5r3FieTOb34Wn0yZqbaW9ZZrrL7656LOBeyhkq/YETLytvESpTQrUL7XVmH/ycY7q0OB76bTm2voAObT2GsncMbdN2sk46N9V/APg3RqGSddkKZAvR34K3gbyE+CKTsm4; - Expires=Tue, 11 Jan 2022 19:47:02 GMT; Path=/ - - AWSALBTGCORS=+X753rANEjwQi1nIs/VBtLpAekEcXMbUCPOlNef+/yl5r3FieTOb34Wn0yZqbaW9ZZrrL7656LOBeyhkq/YETLytvESpTQrUL7XVmH/ycY7q0OB76bTm2voAObT2GsncMbdN2sk46N9V/APg3RqGSddkKZAvR34K3gbyE+CKTsm4; - Expires=Tue, 11 Jan 2022 19:47:02 GMT; Path=/; SameSite=None; Secure - - csrftoken=tjFymax6FsoAfVcO5lxWfqrolys3JEQKzr5ETpVAsQwsfFNM6QAIPVCCOmreYmKI; - expires=Tue, 03 Jan 2023 19:47:03 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=0kxanb2jvp8gdf4de7d51m4dagvep33s; expires=Tue, 18 Jan 2022 19:47:03 + - AWSALB=dJCyXPo+TeBS6pM0llW4QqF4ExstwLF3yu5EoRH81aQr95FdE/U61qUaf5xEUaQj4LXSIX/KGCxuhRa5alRDxKKRaq+3Ap9FuzCqW69AHyfbzhFR6w3sXFGc7OdK; + Expires=Fri, 14 Oct 2022 15:26:03 GMT; Path=/ + - AWSALBCORS=dJCyXPo+TeBS6pM0llW4QqF4ExstwLF3yu5EoRH81aQr95FdE/U61qUaf5xEUaQj4LXSIX/KGCxuhRa5alRDxKKRaq+3Ap9FuzCqW69AHyfbzhFR6w3sXFGc7OdK; + Expires=Fri, 14 Oct 2022 15:26:03 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=a4bYLXTxy0YzjP+TbK6LMx2xFktirlP5t/qCP46ac/LfUPcpfoIBtF9+gY2Hx76Z5Fx1ethrzFHIdEaeWxDUX5R+YMHncK1IoHvnQ16Nx7uQpQGR2+VAIOIaoVZg425dFzDQUZiSaC83Bj8ytbfcGvoKHCshxcRnL9WimUcyxhTp; + Expires=Fri, 14 Oct 2022 15:26:03 GMT; Path=/ + - AWSALBTGCORS=a4bYLXTxy0YzjP+TbK6LMx2xFktirlP5t/qCP46ac/LfUPcpfoIBtF9+gY2Hx76Z5Fx1ethrzFHIdEaeWxDUX5R+YMHncK1IoHvnQ16Nx7uQpQGR2+VAIOIaoVZg425dFzDQUZiSaC83Bj8ytbfcGvoKHCshxcRnL9WimUcyxhTp; + Expires=Fri, 14 Oct 2022 15:26:03 GMT; Path=/; SameSite=None; Secure + - csrftoken=iVGmsGGbuG2J6WYxbChngSNi1Trib9EMQW1GZL32WNRsAsKGKdnve0Ohkwj0PRec; + expires=Fri, 06 Oct 2023 15:26:04 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=d5ah0j7hvlkfjrrhg7hc5m4c6xkmnfjk; expires=Fri, 21 Oct 2022 15:26:04 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -195,23 +243,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/","id":"1d0d7483-a453-4ccf-aed3-b67114844f32","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T19:47:02.578436Z","modified_at":"2022-01-04T19:47:02.578436Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 19:47:03 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/","id":"0c512ad6-b6c0-4363-956e-5b9074640ef4","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:26:03.232573Z","modified_at":"2022-10-07T15:26:03.232573Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:26:04 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/ body: encoding: UTF-8 string: '{"name":"one","type":"string"}' @@ -219,7 +256,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -232,30 +269,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:47:03 GMT + - Fri, 07 Oct 2022 15:26:06 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=hxKrqdnckY0FhZJ1PKE2I1Hh/kiJXRP5nKTuOwJoXY/Fr2rd1DkOhNIK5220dCSyocMZRCpu9EOywBrTynmY/1bGIuUpsmjjfmZ0P/SmDjuEZiqRfxG1ZR6tsfd8; - Expires=Tue, 11 Jan 2022 19:47:03 GMT; Path=/ - - AWSALBCORS=hxKrqdnckY0FhZJ1PKE2I1Hh/kiJXRP5nKTuOwJoXY/Fr2rd1DkOhNIK5220dCSyocMZRCpu9EOywBrTynmY/1bGIuUpsmjjfmZ0P/SmDjuEZiqRfxG1ZR6tsfd8; - Expires=Tue, 11 Jan 2022 19:47:03 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=TctTpXVVWhYg9aF+L/j50F89GHZEsX+rySQW6tEKvo77VsbA19C9hf+boZQOtDabTbyVl4bDDyreJl2Jh8kcx3OT03smVdlffYniarkjKBCtY6DIHHA/8jUHOMiqY8xlwEIxlymI/skDLd1UGWBZpZ0nqFS3111m6bysf0xavBtb; - Expires=Tue, 11 Jan 2022 19:47:03 GMT; Path=/ - - AWSALBTGCORS=TctTpXVVWhYg9aF+L/j50F89GHZEsX+rySQW6tEKvo77VsbA19C9hf+boZQOtDabTbyVl4bDDyreJl2Jh8kcx3OT03smVdlffYniarkjKBCtY6DIHHA/8jUHOMiqY8xlwEIxlymI/skDLd1UGWBZpZ0nqFS3111m6bysf0xavBtb; - Expires=Tue, 11 Jan 2022 19:47:03 GMT; Path=/; SameSite=None; Secure - - csrftoken=BiVELuAGH3Sl6RQBKiEZov0XdCwkDCyNnNBICsfaxeE0XtHsDm133gZvjcDIT4LJ; - expires=Tue, 03 Jan 2023 19:47:03 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=wvusc25elesbong90q2sh7dzvom21hpp; expires=Tue, 18 Jan 2022 19:47:03 + - AWSALB=9otAkGzpS0EuZIzS/l+p8/pWF9EC+JbAR4Rr3PZVfJw78oHgm1CKOGhxKpEec1FEllkcxz7n9/sbkih/E9sG1alYsWURVcJQvnUPhWxF5s90S2OW/QPzyDcQRWYl; + Expires=Fri, 14 Oct 2022 15:26:04 GMT; Path=/ + - AWSALBCORS=9otAkGzpS0EuZIzS/l+p8/pWF9EC+JbAR4Rr3PZVfJw78oHgm1CKOGhxKpEec1FEllkcxz7n9/sbkih/E9sG1alYsWURVcJQvnUPhWxF5s90S2OW/QPzyDcQRWYl; + Expires=Fri, 14 Oct 2022 15:26:04 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=oMsA5qS7mBf0CvBd5ShRhhGlFSHOrPA+uVNtYX7y9CtdUWvARMSbY6yYoW5SzTDp2WxSzeitJwybcHwEQSRGuYWy26fghnmig0aDV2lgHOxwKhgQJW5RVhGbFkS0cmr8kC5GR4k877SXDViD08V1Kry60fzchn1EMQpE8ZSz1b37; + Expires=Fri, 14 Oct 2022 15:26:04 GMT; Path=/ + - AWSALBTGCORS=oMsA5qS7mBf0CvBd5ShRhhGlFSHOrPA+uVNtYX7y9CtdUWvARMSbY6yYoW5SzTDp2WxSzeitJwybcHwEQSRGuYWy26fghnmig0aDV2lgHOxwKhgQJW5RVhGbFkS0cmr8kC5GR4k877SXDViD08V1Kry60fzchn1EMQpE8ZSz1b37; + Expires=Fri, 14 Oct 2022 15:26:04 GMT; Path=/; SameSite=None; Secure + - csrftoken=GB8FVbVUUobhW2ld6CfN497tGskdZO4Py8ivdF6XvATRxZm01w4JSBOZTgylcqw8; + expires=Fri, 06 Oct 2023 15:26:06 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=udjpbg1sriuoftoqskuigfncshqthc5f; expires=Fri, 21 Oct 2022 15:26:06 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/5515e1ea-d81e-45c6-8cf6-0bc5a571f655/ + - https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/d51a6810-a17e-42e4-8ede-81ae46ea0120/ Vary: - Accept, Cookie, Origin Allow: @@ -270,11 +307,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/5515e1ea-d81e-45c6-8cf6-0bc5a571f655/","id":"5515e1ea-d81e-45c6-8cf6-0bc5a571f655","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T19:47:03.849726Z","modified_at":"2022-01-04T19:47:03.849726Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 19:47:03 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/d51a6810-a17e-42e4-8ede-81ae46ea0120/","id":"d51a6810-a17e-42e4-8ede-81ae46ea0120","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:26:06.490985Z","modified_at":"2022-10-07T15:26:06.490985Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:26:06 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/ body: encoding: UTF-8 string: '{"name":"two","type":"string"}' @@ -282,7 +319,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -295,30 +332,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:47:04 GMT + - Fri, 07 Oct 2022 15:26:08 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=9zzOPNhCwRtBI/fvzNAa72owKgKa16GS0M1K+ZeFBGTqEzJ9ug5QWyY6RSw9OGKd79snYVx8zYKSX9b6ISu11PK4v0kAknG+vdWLuJU9xLt3tzZ7yxhBDF7MgosL; - Expires=Tue, 11 Jan 2022 19:47:04 GMT; Path=/ - - AWSALBCORS=9zzOPNhCwRtBI/fvzNAa72owKgKa16GS0M1K+ZeFBGTqEzJ9ug5QWyY6RSw9OGKd79snYVx8zYKSX9b6ISu11PK4v0kAknG+vdWLuJU9xLt3tzZ7yxhBDF7MgosL; - Expires=Tue, 11 Jan 2022 19:47:04 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=+iXdeU5VqVh6/5QqbZFq7ZOC4bfQuiRAqgKK8v0ul//L7jKgcPkQF0SrquUCtpoWGOEDBmHu3EetXjH0kMUJgAxS3HCIFzuiwovVMJNI9aXkUhcckmZeVcalcqwwDxQ4+bUc5NzXAwp/ckdzy2v05nSJqQAvzOjErzFMwGme2CF2; - Expires=Tue, 11 Jan 2022 19:47:04 GMT; Path=/ - - AWSALBTGCORS=+iXdeU5VqVh6/5QqbZFq7ZOC4bfQuiRAqgKK8v0ul//L7jKgcPkQF0SrquUCtpoWGOEDBmHu3EetXjH0kMUJgAxS3HCIFzuiwovVMJNI9aXkUhcckmZeVcalcqwwDxQ4+bUc5NzXAwp/ckdzy2v05nSJqQAvzOjErzFMwGme2CF2; - Expires=Tue, 11 Jan 2022 19:47:04 GMT; Path=/; SameSite=None; Secure - - csrftoken=v9Mbc3aNniYW3ud3KiZh8kx6lmcNeRsSfm56XOjl8sBs69TfTMHMf6WXlrvTNeJV; - expires=Tue, 03 Jan 2023 19:47:04 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=upmrtrqcuiamv6sz8c4umx1w3rjkx1cn; expires=Tue, 18 Jan 2022 19:47:04 + - AWSALB=X5EaQsnmqn/+1HYowzM4HiZ1vH230ASq7UTzPG6Y1SX519XIzHRYO9Nh4Sq3kGi4skf+ia4/c62PNjEob9lnN6086Yv2Eb1Pu846cYdvMI3ndmz0CmEeV7KiNoAh; + Expires=Fri, 14 Oct 2022 15:26:06 GMT; Path=/ + - AWSALBCORS=X5EaQsnmqn/+1HYowzM4HiZ1vH230ASq7UTzPG6Y1SX519XIzHRYO9Nh4Sq3kGi4skf+ia4/c62PNjEob9lnN6086Yv2Eb1Pu846cYdvMI3ndmz0CmEeV7KiNoAh; + Expires=Fri, 14 Oct 2022 15:26:06 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=laO2sVkkQl3jbUtMwkPu7dWF9XWKZF0M9KnRZIC4oH3l+IQL6ij5VcddpW5eC3gx6WsNVZnsbB9TyIUqcmC/OzEHHuq8IcHOazWG2TRJKL6F5ukUBy+ceWl928K4Keviu90QWfq3GjfxA1xYABBXAeQfFieo8L0YVIB3RFAeqbJ2; + Expires=Fri, 14 Oct 2022 15:26:06 GMT; Path=/ + - AWSALBTGCORS=laO2sVkkQl3jbUtMwkPu7dWF9XWKZF0M9KnRZIC4oH3l+IQL6ij5VcddpW5eC3gx6WsNVZnsbB9TyIUqcmC/OzEHHuq8IcHOazWG2TRJKL6F5ukUBy+ceWl928K4Keviu90QWfq3GjfxA1xYABBXAeQfFieo8L0YVIB3RFAeqbJ2; + Expires=Fri, 14 Oct 2022 15:26:06 GMT; Path=/; SameSite=None; Secure + - csrftoken=4NhAP983ij5lJN7cJJjCd5lpkmv4ehwzHTkJKBYDl9RL0HP6T4GuoyNJBMf2SgLB; + expires=Fri, 06 Oct 2023 15:26:08 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=xlf4m3j6lt4obbcl0mr2n67oe083fzqo; expires=Fri, 21 Oct 2022 15:26:08 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/b3464fb6-7519-4502-9f9a-02808d471d9f/ + - https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/77f1dfe8-6e2a-4c92-8509-a5279b098603/ Vary: - Accept, Cookie, Origin Allow: @@ -333,11 +370,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/b3464fb6-7519-4502-9f9a-02808d471d9f/","id":"b3464fb6-7519-4502-9f9a-02808d471d9f","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T19:47:04.580627Z","modified_at":"2022-01-04T19:47:04.580627Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 19:47:04 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/77f1dfe8-6e2a-4c92-8509-a5279b098603/","id":"77f1dfe8-6e2a-4c92-8509-a5279b098603","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:26:08.026944Z","modified_at":"2022-10-07T15:26:08.026944Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:26:08 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/environments/ + uri: https://api.staging.cloudtruth.io/api/v1/environments/ body: encoding: US-ASCII string: '' @@ -345,7 +382,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -358,25 +395,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:47:05 GMT + - Fri, 07 Oct 2022 15:26:09 GMT Content-Type: - application/json Content-Length: - - '4139' + - '2085' Connection: - keep-alive Set-Cookie: - - AWSALB=fscljsnH+EoE9uLDDB8RlSZnBwcmzhNMmXNbsEvD1VvEy8TiVnSVcyKE008AWuJjzniyusYLqouBMaLb8q4x2RhjJFxrh4eKvcGwVsDy0DxMFqhYEPp3k3wMzv7Y; - Expires=Tue, 11 Jan 2022 19:47:05 GMT; Path=/ - - AWSALBCORS=fscljsnH+EoE9uLDDB8RlSZnBwcmzhNMmXNbsEvD1VvEy8TiVnSVcyKE008AWuJjzniyusYLqouBMaLb8q4x2RhjJFxrh4eKvcGwVsDy0DxMFqhYEPp3k3wMzv7Y; - Expires=Tue, 11 Jan 2022 19:47:05 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=FZH7KU/NRxtPXC5Ya1X3paaKD1b4r7NPh1+XyzthKupbE4qTgy4IkJacC+WZ2t9lJzDbrfT4gxy9ZFE+oOH9x5FumysYXxHVsCZ3muWiXMd8SFWyz7KswtjInT1lIAfPrrtCqP5iiKGFEJczmLiB7W4kp3Os9sRsRXZ7pGaJrFhh; - Expires=Tue, 11 Jan 2022 19:47:05 GMT; Path=/ - - AWSALBTGCORS=FZH7KU/NRxtPXC5Ya1X3paaKD1b4r7NPh1+XyzthKupbE4qTgy4IkJacC+WZ2t9lJzDbrfT4gxy9ZFE+oOH9x5FumysYXxHVsCZ3muWiXMd8SFWyz7KswtjInT1lIAfPrrtCqP5iiKGFEJczmLiB7W4kp3Os9sRsRXZ7pGaJrFhh; - Expires=Tue, 11 Jan 2022 19:47:05 GMT; Path=/; SameSite=None; Secure - - csrftoken=D68dywT5g8h8KxKzaMhCqVk6jdWnMeYt3pZca359VjJwFwTvaMnGGBDZOsQfgp3e; - expires=Tue, 03 Jan 2023 19:47:05 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=jlzmlrioiia41vf1uqwlwq7cvnhjm6gv; expires=Tue, 18 Jan 2022 19:47:05 + - AWSALB=bSH1zrJA8dZKQvfwPYrv4Y16yEnrCRLfC6jFakmuNJH3H8mzh6rIqiFo2EK/htvdPVAkT9wb/YCUE6Dm3IoqvsUxr6+f2u+ghArb94xO4VYAODhQhsstdQpvvKD0; + Expires=Fri, 14 Oct 2022 15:26:08 GMT; Path=/ + - AWSALBCORS=bSH1zrJA8dZKQvfwPYrv4Y16yEnrCRLfC6jFakmuNJH3H8mzh6rIqiFo2EK/htvdPVAkT9wb/YCUE6Dm3IoqvsUxr6+f2u+ghArb94xO4VYAODhQhsstdQpvvKD0; + Expires=Fri, 14 Oct 2022 15:26:08 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=0OaKI6zy8KFX9j5wu+QaLhtUm8i12Q2DUvTeBiC9gWvTNoLVolERU/LH9hAivkpV76F1svyBIcGrZ/HNKMHYqEif8p+d6HVJaOZ6gA3Vd/wC4f9wCvpVNbx2UmR2N+3gdRTtUZpVlQQiujqiWThD1AjQQOqrqNTyR4m3cwkJoiCw; + Expires=Fri, 14 Oct 2022 15:26:08 GMT; Path=/ + - AWSALBTGCORS=0OaKI6zy8KFX9j5wu+QaLhtUm8i12Q2DUvTeBiC9gWvTNoLVolERU/LH9hAivkpV76F1svyBIcGrZ/HNKMHYqEif8p+d6HVJaOZ6gA3Vd/wC4f9wCvpVNbx2UmR2N+3gdRTtUZpVlQQiujqiWThD1AjQQOqrqNTyR4m3cwkJoiCw; + Expires=Fri, 14 Oct 2022 15:26:08 GMT; Path=/; SameSite=None; Secure + - csrftoken=Px84Xl3F2o2d5ScCZ9IS7eRDB8dUylEg1ryhF8mAHkWDfphh66s8afFGUTUPP7Cr; + expires=Fri, 06 Oct 2023 15:26:09 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=iydfi9qov9uecrmk9rkm4uxcej5pb4ii; expires=Fri, 21 Oct 2022 15:26:09 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -394,24 +431,23 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":9,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","id":"e8bc190d-0354-4e66-91c9-64501e501ec5","name":"default","description":"The - auto-generated default environment.","parent":null,"children":["https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/"],"created_at":"2021-07-20T18:14:09.023022Z","modified_at":"2022-01-04T19:44:39.974981Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","id":"c4de304d-5dd4-4a41-80ec-9a469f1aa4f5","name":"development","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/"],"created_at":"2021-07-20T18:14:09.035255Z","modified_at":"2022-01-04T19:34:27.489417Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/","id":"12b9c81b-9002-423b-9ca7-22cece646d07","name":"dev-matt","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","children":[],"created_at":"2021-07-21T19:53:37.534082Z","modified_at":"2021-07-26T22:01:23.472634Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","id":"2281d9da-8376-4f45-baf2-372a71260dfa","name":"europe","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T19:53:47.438517Z","modified_at":"2021-07-26T22:01:29.331661Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","id":"c99d6ab9-4674-4f76-bb43-da0b19124e18","name":"local","description":"for - local development","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T19:53:50.000541Z","modified_at":"2021-07-26T22:01:32.150839Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","id":"ef133a2e-3c9c-4229-a509-e56332baff40","name":"ops","description":"The - ops environment - infrastructure that acts as the entry point to the other - environment''s infrastructure","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T20:05:10.325110Z","modified_at":"2021-07-26T22:01:35.184068Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","id":"cde7cf9d-8bf2-46cb-9e97-dee9b99e4335","name":"production","description":"for - real","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/"],"created_at":"2021-07-20T18:14:09.058957Z","modified_at":"2021-10-26T18:14:38.859067Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/","id":"e4399ff4-a962-451b-adfb-7e504ad6bb6d","name":"staging","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-20T18:14:09.047049Z","modified_at":"2021-07-26T18:46:21.385162Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/","id":"3afc0523-4722-4fa1-aaea-5d49beaa284d","name":"usa","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T20:05:24.767679Z","modified_at":"2021-07-26T18:44:51.186840Z"}]}' - recorded_at: Tue, 04 Jan 2022 19:47:05 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","id":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","name":"default","description":"Default + environment, base for all environments.","parent":null,"children":["https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/"],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.112161Z","modified_at":"2022-06-02T17:13:09.641786Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","id":"8f2e37b9-b429-4987-bb85-abd24bd67274","name":"development","description":"Development + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.123839Z","modified_at":"2022-06-02T17:11:55.123839Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","id":"0663ac09-5883-452b-bc1a-00e3347fece5","name":"production","description":"Production + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.145580Z","modified_at":"2022-06-02T17:11:55.145580Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/","id":"fc970cc2-c24f-427d-9c7a-70acde9f1b64","name":"staging","description":"Staging + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.134547Z","modified_at":"2022-06-02T17:11:55.134547Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:26:09 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/5515e1ea-d81e-45c6-8cf6-0bc5a571f655/values/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/d51a6810-a17e-42e4-8ede-81ae46ea0120/values/ body: encoding: UTF-8 - string: '{"environment":"e8bc190d-0354-4e66-91c9-64501e501ec5","external":false,"internal_value":"defaultone"}' + string: '{"environment":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","external":false,"internal_value":"defaultone"}' headers: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -424,30 +460,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:47:06 GMT + - Fri, 07 Oct 2022 15:26:11 GMT Content-Type: - application/json Content-Length: - - '941' + - '993' Connection: - keep-alive Set-Cookie: - - AWSALB=gqgZndSwcfBK5SVbSgtPbjS0F+R0yQLoV98XlNhvrPtpOf+Q5ycjPs1cO+M8nd9tK3l0tD1cVBEHgq9H5j3fq/Ro6SjXs7h3PPlRJf1XlBj03RPrvRwH0pv9e97i; - Expires=Tue, 11 Jan 2022 19:47:05 GMT; Path=/ - - AWSALBCORS=gqgZndSwcfBK5SVbSgtPbjS0F+R0yQLoV98XlNhvrPtpOf+Q5ycjPs1cO+M8nd9tK3l0tD1cVBEHgq9H5j3fq/Ro6SjXs7h3PPlRJf1XlBj03RPrvRwH0pv9e97i; - Expires=Tue, 11 Jan 2022 19:47:05 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=qk85gBp9gCphk1bOHnvaqrumqE2a4TmedR8hDC33rrZl9JX7O/E6vsfDkgrRR3SfLgTIwgiDgFLZfJyElcbWtL5mDo7knf1jISqrZmfXhgJdYGaE+YNt98KHIa7qrG6j10G5kui+SYswylkMuRYpGg2vygycn3IoyUc0w72eERCK; - Expires=Tue, 11 Jan 2022 19:47:05 GMT; Path=/ - - AWSALBTGCORS=qk85gBp9gCphk1bOHnvaqrumqE2a4TmedR8hDC33rrZl9JX7O/E6vsfDkgrRR3SfLgTIwgiDgFLZfJyElcbWtL5mDo7knf1jISqrZmfXhgJdYGaE+YNt98KHIa7qrG6j10G5kui+SYswylkMuRYpGg2vygycn3IoyUc0w72eERCK; - Expires=Tue, 11 Jan 2022 19:47:05 GMT; Path=/; SameSite=None; Secure - - csrftoken=4KyswL4r0yuKZ3jeiVk0Ax8quNpv0YbEc9gWv4ME8VmpMtNhTfvsR3a1AkUKtHjU; - expires=Tue, 03 Jan 2023 19:47:06 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=zgr8zneup13ur97h7otlqqrtk0j2a4fg; expires=Tue, 18 Jan 2022 19:47:06 + - AWSALB=sA4CUyuBjfZBn8ulbaJMsS2fIzWWqzX98YqHBmRyXLVZ8pitcEmUv6jSKxuavxnaU8IEkgRcg9pJNPLYqtLTgjeVZEwabmA0wfH07bB6ZASspHRwRvWD3FbnpZcD; + Expires=Fri, 14 Oct 2022 15:26:09 GMT; Path=/ + - AWSALBCORS=sA4CUyuBjfZBn8ulbaJMsS2fIzWWqzX98YqHBmRyXLVZ8pitcEmUv6jSKxuavxnaU8IEkgRcg9pJNPLYqtLTgjeVZEwabmA0wfH07bB6ZASspHRwRvWD3FbnpZcD; + Expires=Fri, 14 Oct 2022 15:26:09 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=OPDxr43AM2znd7K7KzHUqQhg5QJM8XIapQTzmWd5T+f9qYf1VIRBIMD1ZoP80NlumjGG+gNezsHJ7Q+e1OSPucJaUUU7lzI8mynaq0im2jN+feFyDV8xjhxqURCQ5+6k5QWzdxw4sMIM27Pyq4XVOfJMi0eR3ar2+c/XPTZJ2YKi; + Expires=Fri, 14 Oct 2022 15:26:09 GMT; Path=/ + - AWSALBTGCORS=OPDxr43AM2znd7K7KzHUqQhg5QJM8XIapQTzmWd5T+f9qYf1VIRBIMD1ZoP80NlumjGG+gNezsHJ7Q+e1OSPucJaUUU7lzI8mynaq0im2jN+feFyDV8xjhxqURCQ5+6k5QWzdxw4sMIM27Pyq4XVOfJMi0eR3ar2+c/XPTZJ2YKi; + Expires=Fri, 14 Oct 2022 15:26:09 GMT; Path=/; SameSite=None; Secure + - csrftoken=apy9tffBHvjlJZtoRmA496whYxA2lkneejfYYr97d94IPXqjgyvnwKzBoelmvYBi; + expires=Fri, 06 Oct 2023 15:26:11 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=e9mbxbug4wz43ghn9dzl2gkb128cb8mu; expires=Fri, 21 Oct 2022 15:26:11 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/5515e1ea-d81e-45c6-8cf6-0bc5a571f655/values/91e9cf86-fa05-47f4-a5a4-69549841ad9f/ + - https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/d51a6810-a17e-42e4-8ede-81ae46ea0120/values/70737f9c-c3d1-42fb-8380-bfbbbedce6b7/ Vary: - Accept, Cookie, Origin Allow: @@ -462,19 +498,19 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/5515e1ea-d81e-45c6-8cf6-0bc5a571f655/values/91e9cf86-fa05-47f4-a5a4-69549841ad9f/","id":"91e9cf86-fa05-47f4-a5a4-69549841ad9f","environment":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","environment_name":"default","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/5515e1ea-d81e-45c6-8cf6-0bc5a571f655/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"defaultone","interpolated":false,"value":"defaultone","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:47:06.158646Z","modified_at":"2022-01-04T19:47:06.158646Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaultone"}' - recorded_at: Tue, 04 Jan 2022 19:47:06 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/d51a6810-a17e-42e4-8ede-81ae46ea0120/values/70737f9c-c3d1-42fb-8380-bfbbbedce6b7/","id":"70737f9c-c3d1-42fb-8380-bfbbbedce6b7","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/d51a6810-a17e-42e4-8ede-81ae46ea0120/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"defaultone","interpolated":false,"value":"defaultone","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:26:11.419226Z","modified_at":"2022-10-07T15:26:11.419226Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaultone"}' + recorded_at: Fri, 07 Oct 2022 15:26:11 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/b3464fb6-7519-4502-9f9a-02808d471d9f/values/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/77f1dfe8-6e2a-4c92-8509-a5279b098603/values/ body: encoding: UTF-8 - string: '{"environment":"e8bc190d-0354-4e66-91c9-64501e501ec5","external":false,"internal_value":"defaulttwo"}' + string: '{"environment":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","external":false,"internal_value":"defaulttwo"}' headers: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -487,30 +523,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:47:06 GMT + - Fri, 07 Oct 2022 15:26:12 GMT Content-Type: - application/json Content-Length: - - '941' + - '993' Connection: - keep-alive Set-Cookie: - - AWSALB=mfN+iWkTRdKoJnj7YAbmZIMEvyAWaMp5HONWMTqdZBoctKCXg4Uqw7+G985Kcc2I63nJq1Po9+IOrCd5ljE/EkKTSnq3GhRrNEHlUMzK6ZHZ+CwhJsYN1mtxI3kN; - Expires=Tue, 11 Jan 2022 19:47:06 GMT; Path=/ - - AWSALBCORS=mfN+iWkTRdKoJnj7YAbmZIMEvyAWaMp5HONWMTqdZBoctKCXg4Uqw7+G985Kcc2I63nJq1Po9+IOrCd5ljE/EkKTSnq3GhRrNEHlUMzK6ZHZ+CwhJsYN1mtxI3kN; - Expires=Tue, 11 Jan 2022 19:47:06 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=YwlzxSkL67WP83pcRTisY1mlPR4KNobWM+4Osgz5AF+XwzV9WkCqP+lb8FjXZznCZcBhkKWE85SCwEslW0MwCPbq4p1SIu+kjq+RNuhfbF/LAoK1EVt6LK5DImOk/lTQnzuYOse+iOLV/DrOIawseg80rnUBmR0K2cFMuu+vVIOE; - Expires=Tue, 11 Jan 2022 19:47:06 GMT; Path=/ - - AWSALBTGCORS=YwlzxSkL67WP83pcRTisY1mlPR4KNobWM+4Osgz5AF+XwzV9WkCqP+lb8FjXZznCZcBhkKWE85SCwEslW0MwCPbq4p1SIu+kjq+RNuhfbF/LAoK1EVt6LK5DImOk/lTQnzuYOse+iOLV/DrOIawseg80rnUBmR0K2cFMuu+vVIOE; - Expires=Tue, 11 Jan 2022 19:47:06 GMT; Path=/; SameSite=None; Secure - - csrftoken=MTmlHWTY0xWn3UqMbpsvVnDcCNXd33Ez2EnwPaNvWEiTPrIsg4DuKtyfTbVMF3Bp; - expires=Tue, 03 Jan 2023 19:47:06 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=1oyvdv6tdob31mogf9ld92j2d84w76d6; expires=Tue, 18 Jan 2022 19:47:06 + - AWSALB=1s4b8Qyb9rV67I5fOuC+x0/nNq5eMtGw3VRA/9oQ3RYdu678nsISs0vc1lbdwNOWk3/kQEc3wa1GpdWEPnGI87NiZt/sUnMiQb6AtBZJWJbCPK5iMtoISfxouJqG; + Expires=Fri, 14 Oct 2022 15:26:11 GMT; Path=/ + - AWSALBCORS=1s4b8Qyb9rV67I5fOuC+x0/nNq5eMtGw3VRA/9oQ3RYdu678nsISs0vc1lbdwNOWk3/kQEc3wa1GpdWEPnGI87NiZt/sUnMiQb6AtBZJWJbCPK5iMtoISfxouJqG; + Expires=Fri, 14 Oct 2022 15:26:11 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=4AL9vkiIhvtYXQSdqpqNm7XSLeT0FGyj1fD26+Jn7h+BCAf+zd5anDmSl+/Gylw379mchXZe3hS8TogIgo3euE+AbStBk5mXl2XKm5p2DeRmpRt7vSkHztim6HuZH373jvIoeUpfwf9MCnL4FQy91U4AzDKKNldP3sdpQF64YmzV; + Expires=Fri, 14 Oct 2022 15:26:11 GMT; Path=/ + - AWSALBTGCORS=4AL9vkiIhvtYXQSdqpqNm7XSLeT0FGyj1fD26+Jn7h+BCAf+zd5anDmSl+/Gylw379mchXZe3hS8TogIgo3euE+AbStBk5mXl2XKm5p2DeRmpRt7vSkHztim6HuZH373jvIoeUpfwf9MCnL4FQy91U4AzDKKNldP3sdpQF64YmzV; + Expires=Fri, 14 Oct 2022 15:26:11 GMT; Path=/; SameSite=None; Secure + - csrftoken=9W3Wi9zH8FOhpYML1KsMkjDO4ZkpEwBWNxMLL74XGRMSQ3rBU32w2TiAcpHNHoLm; + expires=Fri, 06 Oct 2023 15:26:12 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=pr6lgkgo55qzdyt0s6u6lt3y9lucmha1; expires=Fri, 21 Oct 2022 15:26:12 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/b3464fb6-7519-4502-9f9a-02808d471d9f/values/d03c1e85-b012-4e91-845c-79ac404e0f25/ + - https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/77f1dfe8-6e2a-4c92-8509-a5279b098603/values/a81dae4c-ae58-47fe-b054-3874ba6be1e7/ Vary: - Accept, Cookie, Origin Allow: @@ -525,11 +561,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/b3464fb6-7519-4502-9f9a-02808d471d9f/values/d03c1e85-b012-4e91-845c-79ac404e0f25/","id":"d03c1e85-b012-4e91-845c-79ac404e0f25","environment":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","environment_name":"default","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/b3464fb6-7519-4502-9f9a-02808d471d9f/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"defaulttwo","interpolated":false,"value":"defaulttwo","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:47:06.697223Z","modified_at":"2022-01-04T19:47:06.697223Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaulttwo"}' - recorded_at: Tue, 04 Jan 2022 19:47:06 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/77f1dfe8-6e2a-4c92-8509-a5279b098603/values/a81dae4c-ae58-47fe-b054-3874ba6be1e7/","id":"a81dae4c-ae58-47fe-b054-3874ba6be1e7","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/77f1dfe8-6e2a-4c92-8509-a5279b098603/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"defaulttwo","interpolated":false,"value":"defaulttwo","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:26:12.922425Z","modified_at":"2022-10-07T15:26:12.922425Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaulttwo"}' + recorded_at: Fri, 07 Oct 2022 15:26:12 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/?environment=e8bc190d-0354-4e66-91c9-64501e501ec5 + uri: https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76 body: encoding: US-ASCII string: '' @@ -537,7 +573,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -550,25 +586,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:47:07 GMT + - Fri, 07 Oct 2022 15:26:14 GMT Content-Type: - application/json Content-Length: - - '3185' + - '3371' Connection: - keep-alive Set-Cookie: - - AWSALB=k7RgMko/t2Qby+THXwj0ye9NuPlMcBMcyy3o6MwIiK06kZ1D+fAy+zn1+BJZ/4V6Rv2+k66tcBmRxUXlrjI2VcDpbI2GCe/MQG7stxLeoCBwEJpbhl512hcxweX9; - Expires=Tue, 11 Jan 2022 19:47:06 GMT; Path=/ - - AWSALBCORS=k7RgMko/t2Qby+THXwj0ye9NuPlMcBMcyy3o6MwIiK06kZ1D+fAy+zn1+BJZ/4V6Rv2+k66tcBmRxUXlrjI2VcDpbI2GCe/MQG7stxLeoCBwEJpbhl512hcxweX9; - Expires=Tue, 11 Jan 2022 19:47:06 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=Mp7M0AnObjhcr0+7ymXephk3jjWYP/xzqrvkY1qUDulrV7hrxVOp2teLmOs4QKjqsDjJvGJD0Vo6bJ+HW9iUzyPf44XORYZl4TJy+3J4O7MeVVRVExs9vrTWTwKgAgoWB+3IKKNLqd00duar5srR/UTQcf7+sOKGfnO0UIVPn4Pp; - Expires=Tue, 11 Jan 2022 19:47:06 GMT; Path=/ - - AWSALBTGCORS=Mp7M0AnObjhcr0+7ymXephk3jjWYP/xzqrvkY1qUDulrV7hrxVOp2teLmOs4QKjqsDjJvGJD0Vo6bJ+HW9iUzyPf44XORYZl4TJy+3J4O7MeVVRVExs9vrTWTwKgAgoWB+3IKKNLqd00duar5srR/UTQcf7+sOKGfnO0UIVPn4Pp; - Expires=Tue, 11 Jan 2022 19:47:06 GMT; Path=/; SameSite=None; Secure - - csrftoken=kB3G7LM15nYkC7dG1o9aAmvLA0uU42g2ZSLawky6FtVnthxGH17YPXBWerBhr3hN; - expires=Tue, 03 Jan 2023 19:47:07 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=vu6o1v8s92mldpjjwkjwyqbdbu88iwmw; expires=Tue, 18 Jan 2022 19:47:07 + - AWSALB=g6Ke3IxOwvRZ+SaO6uyjjBGLl7s5tVmIpaCjxYIt1FtpKOXtiF5GMO6VX/mD/h3lMvxG/83ldyxYc3404Zz4g73EwkdOlXOLPMA+qxW575CIUVfbZtCG7ySDLVem; + Expires=Fri, 14 Oct 2022 15:26:13 GMT; Path=/ + - AWSALBCORS=g6Ke3IxOwvRZ+SaO6uyjjBGLl7s5tVmIpaCjxYIt1FtpKOXtiF5GMO6VX/mD/h3lMvxG/83ldyxYc3404Zz4g73EwkdOlXOLPMA+qxW575CIUVfbZtCG7ySDLVem; + Expires=Fri, 14 Oct 2022 15:26:13 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=o9sPJ1SBUMeykqMGJ+P5wWaA5AqxL1IxaJ0Oy8X5SFUGJoA555RH0fpFcUYT0R5v6KBChQqVbQIZACsd8BSIcaFH6g17Lra6lp9pVkqo3a20sjyWPEiOFhGwb7ZJHQUDv6n64u4NZMFG0JshieyfKROuDGxMFv+5WiaZ4H22+rnj; + Expires=Fri, 14 Oct 2022 15:26:13 GMT; Path=/ + - AWSALBTGCORS=o9sPJ1SBUMeykqMGJ+P5wWaA5AqxL1IxaJ0Oy8X5SFUGJoA555RH0fpFcUYT0R5v6KBChQqVbQIZACsd8BSIcaFH6g17Lra6lp9pVkqo3a20sjyWPEiOFhGwb7ZJHQUDv6n64u4NZMFG0JshieyfKROuDGxMFv+5WiaZ4H22+rnj; + Expires=Fri, 14 Oct 2022 15:26:13 GMT; Path=/; SameSite=None; Secure + - csrftoken=wl29TZAQOmPMVB7bw3fBjsJmymEeY8IKqQ7ZS8Pj02qhoyTWmInS1Ry69r16ZpOZ; + expires=Fri, 06 Oct 2023 15:26:14 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=mlsx9785zeqtgqjb7ypv7n90qbto576z; expires=Fri, 21 Oct 2022 15:26:14 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -586,11 +622,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/5515e1ea-d81e-45c6-8cf6-0bc5a571f655/","id":"5515e1ea-d81e-45c6-8cf6-0bc5a571f655","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":{"url":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/5515e1ea-d81e-45c6-8cf6-0bc5a571f655/values/91e9cf86-fa05-47f4-a5a4-69549841ad9f/","id":"91e9cf86-fa05-47f4-a5a4-69549841ad9f","environment":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","environment_name":"default","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/5515e1ea-d81e-45c6-8cf6-0bc5a571f655/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"defaultone","interpolated":false,"value":"defaultone","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:47:06.158646Z","modified_at":"2022-01-04T19:47:06.158646Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaultone"}},"created_at":"2022-01-04T19:47:03.849726Z","modified_at":"2022-01-04T19:47:06.158646Z","templates":[]},{"url":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/b3464fb6-7519-4502-9f9a-02808d471d9f/","id":"b3464fb6-7519-4502-9f9a-02808d471d9f","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":{"url":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/b3464fb6-7519-4502-9f9a-02808d471d9f/values/d03c1e85-b012-4e91-845c-79ac404e0f25/","id":"d03c1e85-b012-4e91-845c-79ac404e0f25","environment":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","environment_name":"default","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/b3464fb6-7519-4502-9f9a-02808d471d9f/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"defaulttwo","interpolated":false,"value":"defaulttwo","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:47:06.697223Z","modified_at":"2022-01-04T19:47:06.697223Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaulttwo"}},"created_at":"2022-01-04T19:47:04.580627Z","modified_at":"2022-01-04T19:47:06.697223Z","templates":[]}]}' - recorded_at: Tue, 04 Jan 2022 19:47:07 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/d51a6810-a17e-42e4-8ede-81ae46ea0120/","id":"d51a6810-a17e-42e4-8ede-81ae46ea0120","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/d51a6810-a17e-42e4-8ede-81ae46ea0120/values/70737f9c-c3d1-42fb-8380-bfbbbedce6b7/","id":"70737f9c-c3d1-42fb-8380-bfbbbedce6b7","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/d51a6810-a17e-42e4-8ede-81ae46ea0120/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"defaultone","interpolated":false,"value":"defaultone","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:26:11.419226Z","modified_at":"2022-10-07T15:26:11.419226Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaultone"}},"overrides":null,"created_at":"2022-10-07T15:26:06.490985Z","modified_at":"2022-10-07T15:26:06.490985Z","templates":[]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/77f1dfe8-6e2a-4c92-8509-a5279b098603/","id":"77f1dfe8-6e2a-4c92-8509-a5279b098603","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/77f1dfe8-6e2a-4c92-8509-a5279b098603/values/a81dae4c-ae58-47fe-b054-3874ba6be1e7/","id":"a81dae4c-ae58-47fe-b054-3874ba6be1e7","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/77f1dfe8-6e2a-4c92-8509-a5279b098603/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"defaulttwo","interpolated":false,"value":"defaulttwo","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:26:12.922425Z","modified_at":"2022-10-07T15:26:12.922425Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaulttwo"}},"overrides":null,"created_at":"2022-10-07T15:26:08.026944Z","modified_at":"2022-10-07T15:26:08.026944Z","templates":[]}]}' + recorded_at: Fri, 07 Oct 2022 15:26:14 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/tags/?name=test_tag + uri: https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/tags/?name=test_tag body: encoding: US-ASCII string: '' @@ -598,7 +634,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -611,7 +647,7 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:47:07 GMT + - Fri, 07 Oct 2022 15:26:15 GMT Content-Type: - application/json Content-Length: @@ -619,17 +655,17 @@ http_interactions: Connection: - keep-alive Set-Cookie: - - AWSALB=vZE4RfTXxTsWe4Zc2DyWrwb17LfK+kBEWDcTI2EEplA4JunYNpeuDfM4kZpLY1fMUUARIB8OlsUjJGl6UthLmgPSz0x4PP3p9Q1quAnm/0/p/fPrVBm/QTIBb3vQ; - Expires=Tue, 11 Jan 2022 19:47:07 GMT; Path=/ - - AWSALBCORS=vZE4RfTXxTsWe4Zc2DyWrwb17LfK+kBEWDcTI2EEplA4JunYNpeuDfM4kZpLY1fMUUARIB8OlsUjJGl6UthLmgPSz0x4PP3p9Q1quAnm/0/p/fPrVBm/QTIBb3vQ; - Expires=Tue, 11 Jan 2022 19:47:07 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=DS0fa9lGN677ZEh3D+itnBbNCGmcaj5sUWtu95GFDd2rrMEcCUnMFKXNTdlzExeMJUYi9Ec4Yxn+mkoZE14j1MMsk/0AfYW3tdihYggpicSGuYXmYN8ZcZ4mUN9C7niDmpun57SxIzBQvPLAyQuGewLE3NWzmD6DMau4aRTQhg+Z; - Expires=Tue, 11 Jan 2022 19:47:07 GMT; Path=/ - - AWSALBTGCORS=DS0fa9lGN677ZEh3D+itnBbNCGmcaj5sUWtu95GFDd2rrMEcCUnMFKXNTdlzExeMJUYi9Ec4Yxn+mkoZE14j1MMsk/0AfYW3tdihYggpicSGuYXmYN8ZcZ4mUN9C7niDmpun57SxIzBQvPLAyQuGewLE3NWzmD6DMau4aRTQhg+Z; - Expires=Tue, 11 Jan 2022 19:47:07 GMT; Path=/; SameSite=None; Secure - - csrftoken=sTNBl2rQGrrh4dMtXCYk0j7gH3AsjJfT9ezmiY07cOr9kqP07fLYfoMaKNEAMbny; - expires=Tue, 03 Jan 2023 19:47:07 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=44km9y219pqj44k6cq6g3rql44yp1fim; expires=Tue, 18 Jan 2022 19:47:07 + - AWSALB=9nPlmDd4ALU7SKl0EU+iLAYsgp2JbfxVTI/kcIA3cRo/gWynEytsMoJ1jw3Ro+mbV7L5f792VwziOvkaR+dRimmbPfYEcMiSYfwlTkyi1SLGR7FR6v29k0QziC8n; + Expires=Fri, 14 Oct 2022 15:26:14 GMT; Path=/ + - AWSALBCORS=9nPlmDd4ALU7SKl0EU+iLAYsgp2JbfxVTI/kcIA3cRo/gWynEytsMoJ1jw3Ro+mbV7L5f792VwziOvkaR+dRimmbPfYEcMiSYfwlTkyi1SLGR7FR6v29k0QziC8n; + Expires=Fri, 14 Oct 2022 15:26:14 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=DGEtBk4q3n7BSyIrn0SryIcAoXzXnZ1fn9LSAT0YVxwbXBHLTE/jAc1Up6Q/V/i1b7VwDd65e9U+gtcZxtf2Z0wBc212U8htbeHlFhZ8NY3ZbYOKBFkpt6HxfC1MM2aVXjleRFHL16u42S4MC2U9FtQmds0fpYe4MQXCbhXQzcxG; + Expires=Fri, 14 Oct 2022 15:26:14 GMT; Path=/ + - AWSALBTGCORS=DGEtBk4q3n7BSyIrn0SryIcAoXzXnZ1fn9LSAT0YVxwbXBHLTE/jAc1Up6Q/V/i1b7VwDd65e9U+gtcZxtf2Z0wBc212U8htbeHlFhZ8NY3ZbYOKBFkpt6HxfC1MM2aVXjleRFHL16u42S4MC2U9FtQmds0fpYe4MQXCbhXQzcxG; + Expires=Fri, 14 Oct 2022 15:26:14 GMT; Path=/; SameSite=None; Secure + - csrftoken=3jah48YW0hYkU9v8I4HBpwKqRdjBtD5osTZMlOvTCGO2HB0fhEsTio6e2Ch9HjrX; + expires=Fri, 06 Oct 2023 15:26:15 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=w4vo5a3975d2bb6mbdwqcbvzubcxw74u; expires=Fri, 21 Oct 2022 15:26:15 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -648,10 +684,10 @@ http_interactions: body: encoding: UTF-8 string: '{"count":0,"next":null,"previous":null,"results":[]}' - recorded_at: Tue, 04 Jan 2022 19:47:07 GMT + recorded_at: Fri, 07 Oct 2022 15:26:15 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/tags/ + uri: https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/tags/ body: encoding: UTF-8 string: '{"name":"test_tag"}' @@ -659,7 +695,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -672,30 +708,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:47:08 GMT + - Fri, 07 Oct 2022 15:26:16 GMT Content-Type: - application/json Content-Length: - - '329' + - '352' Connection: - keep-alive Set-Cookie: - - AWSALB=dUENjR5LCqkYys4wpXsBPPxIrB5BYyCUHkODp3aKVD9cyUQxtHO0FLUBCW/YHG/UTEqyTf2s2W5xYgcQKGO5MkfWozYz3DilDASdlt/scENdr+KA2pverfGf4AEI; - Expires=Tue, 11 Jan 2022 19:47:08 GMT; Path=/ - - AWSALBCORS=dUENjR5LCqkYys4wpXsBPPxIrB5BYyCUHkODp3aKVD9cyUQxtHO0FLUBCW/YHG/UTEqyTf2s2W5xYgcQKGO5MkfWozYz3DilDASdlt/scENdr+KA2pverfGf4AEI; - Expires=Tue, 11 Jan 2022 19:47:08 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=A3rFvDyYGy06QVXnfWWmd4X4N2oy+xsgIp1l7wEo24iguezUgU5fihm/maH2BnOFdW/qoUdAedh1d0joWDPRuE9+R+e2FNXTPs52t9TG4873nDV6Yob33rc4mQyknXg3AjQ2+ub76+GRV5ZiNDrPtkN+0v2xBsYCK3gJlLlZcL7Q; - Expires=Tue, 11 Jan 2022 19:47:08 GMT; Path=/ - - AWSALBTGCORS=A3rFvDyYGy06QVXnfWWmd4X4N2oy+xsgIp1l7wEo24iguezUgU5fihm/maH2BnOFdW/qoUdAedh1d0joWDPRuE9+R+e2FNXTPs52t9TG4873nDV6Yob33rc4mQyknXg3AjQ2+ub76+GRV5ZiNDrPtkN+0v2xBsYCK3gJlLlZcL7Q; - Expires=Tue, 11 Jan 2022 19:47:08 GMT; Path=/; SameSite=None; Secure - - csrftoken=NjjAZTraE1ApHRkJTzf97rNk2ZwOnFYSTcqxqZNtwvL3UlRak6mwAdXgyoVFTST0; - expires=Tue, 03 Jan 2023 19:47:08 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=3vsuz1rw0kqsexew1d1aacvseey23red; expires=Tue, 18 Jan 2022 19:47:08 + - AWSALB=gXP30nq/uldOBRCcX84VnH97a7NfCDJRhcFn+NguC+0A9RPoZhVANaHLAEO0845VZM+FQpy5uRamKiPueOuwjP2lzCuNEEyGGBNjIv56gyJL/gbog2JTx2Os0bar; + Expires=Fri, 14 Oct 2022 15:26:15 GMT; Path=/ + - AWSALBCORS=gXP30nq/uldOBRCcX84VnH97a7NfCDJRhcFn+NguC+0A9RPoZhVANaHLAEO0845VZM+FQpy5uRamKiPueOuwjP2lzCuNEEyGGBNjIv56gyJL/gbog2JTx2Os0bar; + Expires=Fri, 14 Oct 2022 15:26:15 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=zfwe0W8g3xMj89qwgC8egtlNeL+q0ZfupiqqSSK/i/x6Ao7biqmf0NtUDvgGMXjuQ8vxk/2e6q2ml07NDlPD5NqCajMSKi8pa1Vyl7o9F7JBemwjYy2SyXyc4BZcO1wK4gLoco9ujOPV2OoSbZoaV+mhzkmeir7oE7kMEyXLXMjx; + Expires=Fri, 14 Oct 2022 15:26:15 GMT; Path=/ + - AWSALBTGCORS=zfwe0W8g3xMj89qwgC8egtlNeL+q0ZfupiqqSSK/i/x6Ao7biqmf0NtUDvgGMXjuQ8vxk/2e6q2ml07NDlPD5NqCajMSKi8pa1Vyl7o9F7JBemwjYy2SyXyc4BZcO1wK4gLoco9ujOPV2OoSbZoaV+mhzkmeir7oE7kMEyXLXMjx; + Expires=Fri, 14 Oct 2022 15:26:15 GMT; Path=/; SameSite=None; Secure + - csrftoken=0bFz1CqaDq5WbVsSa4qJ7YKtP2KBncsFqOZzGsCplvOXsMj3Gm5SqASaGVvtbCMS; + expires=Fri, 06 Oct 2023 15:26:16 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=xtu4keul342pya63raoxmmdrmnkbmt4l; expires=Fri, 21 Oct 2022 15:26:16 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/tags/5982cccd-70dd-4299-9fec-7e90e3f7594d/ + - https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/tags/4a73fc7d-1808-4bd4-bdcc-2d6f50d707e5/ Vary: - Accept, Cookie, Origin Allow: @@ -710,11 +746,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/tags/5982cccd-70dd-4299-9fec-7e90e3f7594d/","id":"5982cccd-70dd-4299-9fec-7e90e3f7594d","name":"test_tag","description":"","timestamp":"2022-01-04T19:47:08.526468Z","pushes":[],"usage":{"last_read":null,"last_read_by":"","total_reads":0}}' - recorded_at: Tue, 04 Jan 2022 19:47:08 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/tags/4a73fc7d-1808-4bd4-bdcc-2d6f50d707e5/","id":"4a73fc7d-1808-4bd4-bdcc-2d6f50d707e5","name":"test_tag","description":"","timestamp":"2022-10-07T15:26:16.803743Z","pushes":[],"push_urls":[],"usage":{"last_read":null,"last_read_by":"","total_reads":0}}' + recorded_at: Fri, 07 Oct 2022 15:26:16 GMT - request: method: patch - uri: https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/5515e1ea-d81e-45c6-8cf6-0bc5a571f655/values/91e9cf86-fa05-47f4-a5a4-69549841ad9f/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/d51a6810-a17e-42e4-8ede-81ae46ea0120/values/70737f9c-c3d1-42fb-8380-bfbbbedce6b7/ body: encoding: UTF-8 string: '{"internal_value":"newdefaultone"}' @@ -722,7 +758,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -735,25 +771,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:47:09 GMT + - Fri, 07 Oct 2022 15:26:18 GMT Content-Type: - application/json Content-Length: - - '950' + - '1002' Connection: - keep-alive Set-Cookie: - - AWSALB=TnTJDQtgFan+9tVUrUfxiQrcMFd7/5OuaKxryGZx0yCgfflxarfHNJKM563C3C/01Ru7L7R4iZBokFfg3wkAiNWFfTWQgTl2tBh3EArehJDbmTyjm3z58+9hk3RD; - Expires=Tue, 11 Jan 2022 19:47:08 GMT; Path=/ - - AWSALBCORS=TnTJDQtgFan+9tVUrUfxiQrcMFd7/5OuaKxryGZx0yCgfflxarfHNJKM563C3C/01Ru7L7R4iZBokFfg3wkAiNWFfTWQgTl2tBh3EArehJDbmTyjm3z58+9hk3RD; - Expires=Tue, 11 Jan 2022 19:47:08 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=2fXZNteFmZWFlg/ch4K3jfEOGrodBsbfVMWUgngA6fHFa2kcx0JIYBitLG5G+ofqyKFlq558d7frG+FFEydUQ4k9W//OoqafqNg2uzp1P1jWDccymWgzNLSuNNa6WKCzGz+YJo7cA/oO4cDGWOwmwv8h7pXpzNh1662Xu5A5C3BK; - Expires=Tue, 11 Jan 2022 19:47:08 GMT; Path=/ - - AWSALBTGCORS=2fXZNteFmZWFlg/ch4K3jfEOGrodBsbfVMWUgngA6fHFa2kcx0JIYBitLG5G+ofqyKFlq558d7frG+FFEydUQ4k9W//OoqafqNg2uzp1P1jWDccymWgzNLSuNNa6WKCzGz+YJo7cA/oO4cDGWOwmwv8h7pXpzNh1662Xu5A5C3BK; - Expires=Tue, 11 Jan 2022 19:47:08 GMT; Path=/; SameSite=None; Secure - - csrftoken=7M5YlTgtA4EfHeuy1pzEw7HKyreLgrYeyJXCTCncrXValxBMG5mhMv4wTLVHghWP; - expires=Tue, 03 Jan 2023 19:47:09 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=viby36hli16brr8jp4c2tvs754rabm06; expires=Tue, 18 Jan 2022 19:47:09 + - AWSALB=giIQLJLdmZRqy4lpbybta6Cb7obtXt73K11OvpJZ55Iu4Qm/PZR/FDbe1bi7qMXO73iqWtDQ+ab9REcbJDchKwBjmEtPIZsrlbrwG3AweJaO0w1kV769OLDgR2BJ; + Expires=Fri, 14 Oct 2022 15:26:17 GMT; Path=/ + - AWSALBCORS=giIQLJLdmZRqy4lpbybta6Cb7obtXt73K11OvpJZ55Iu4Qm/PZR/FDbe1bi7qMXO73iqWtDQ+ab9REcbJDchKwBjmEtPIZsrlbrwG3AweJaO0w1kV769OLDgR2BJ; + Expires=Fri, 14 Oct 2022 15:26:17 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=qzkZB+LF7Z8KVQy8bM/REBOMIvnpKPThQdw12C6NWbvmIlmNXaI5cvsZON7vsiM3elJWIHOHFHxyEhQF25lcHdf5//KHXjSJNnGeN96i36ADGyfg6pyYpKOx1aKcuiOjwnnyP9Rf/VWmU07R57OR+k8fbNx/FavoKX3/e/JIyN50; + Expires=Fri, 14 Oct 2022 15:26:17 GMT; Path=/ + - AWSALBTGCORS=qzkZB+LF7Z8KVQy8bM/REBOMIvnpKPThQdw12C6NWbvmIlmNXaI5cvsZON7vsiM3elJWIHOHFHxyEhQF25lcHdf5//KHXjSJNnGeN96i36ADGyfg6pyYpKOx1aKcuiOjwnnyP9Rf/VWmU07R57OR+k8fbNx/FavoKX3/e/JIyN50; + Expires=Fri, 14 Oct 2022 15:26:17 GMT; Path=/; SameSite=None; Secure + - csrftoken=rdXdCl2R4cl0EcBPpcsOrpQoR2TOsni1WJTU1FCooAhYEeZxF8kETDS1O5FKBf3V; + expires=Fri, 06 Oct 2023 15:26:18 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=8l9klfmce66iznxkgu4ljf7hv6zbvote; expires=Fri, 21 Oct 2022 15:26:18 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -771,11 +807,134 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/5515e1ea-d81e-45c6-8cf6-0bc5a571f655/values/91e9cf86-fa05-47f4-a5a4-69549841ad9f/","id":"91e9cf86-fa05-47f4-a5a4-69549841ad9f","environment":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","environment_name":"default","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/5515e1ea-d81e-45c6-8cf6-0bc5a571f655/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"newdefaultone","interpolated":false,"value":"newdefaultone","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:47:06.158646Z","modified_at":"2022-01-04T19:47:09.054700Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"newdefaultone"}' - recorded_at: Tue, 04 Jan 2022 19:47:09 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/d51a6810-a17e-42e4-8ede-81ae46ea0120/values/70737f9c-c3d1-42fb-8380-bfbbbedce6b7/","id":"70737f9c-c3d1-42fb-8380-bfbbbedce6b7","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/d51a6810-a17e-42e4-8ede-81ae46ea0120/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"newdefaultone","interpolated":false,"value":"newdefaultone","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:26:11.419226Z","modified_at":"2022-10-07T15:26:18.461916Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"newdefaultone"}' + recorded_at: Fri, 07 Oct 2022 15:26:18 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76 + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 15:26:19 GMT + Content-Type: + - application/json + Content-Length: + - '3380' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=FZiwF9BuEJsBrDvoPrMUhqdW/QIMBCznAknYWOWybpv5LRaMWvEA4h7Ajr28SJDsFFAGg8hfBEOqe6pKmYrWZMIPe/mDfow/hs4cxwD6ZPc1WwRaHi97IDBTDJwn; + Expires=Fri, 14 Oct 2022 15:26:18 GMT; Path=/ + - AWSALBCORS=FZiwF9BuEJsBrDvoPrMUhqdW/QIMBCznAknYWOWybpv5LRaMWvEA4h7Ajr28SJDsFFAGg8hfBEOqe6pKmYrWZMIPe/mDfow/hs4cxwD6ZPc1WwRaHi97IDBTDJwn; + Expires=Fri, 14 Oct 2022 15:26:18 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=j04VZDDnE8JE0XhBWKvURFOkNj1f/8bM6liXaVj71si0vN4ftPiWaXtkcTB/omcCviIQMO8y97tIWPhMHfrgMoNB5lACbwtw+zWZkuXgzPH8HND90+mi0AqUtCbRbAoTkwk/cQX0779qybs3SGFg9CS/ln6MadNLHkbLw3dwIEud; + Expires=Fri, 14 Oct 2022 15:26:18 GMT; Path=/ + - AWSALBTGCORS=j04VZDDnE8JE0XhBWKvURFOkNj1f/8bM6liXaVj71si0vN4ftPiWaXtkcTB/omcCviIQMO8y97tIWPhMHfrgMoNB5lACbwtw+zWZkuXgzPH8HND90+mi0AqUtCbRbAoTkwk/cQX0779qybs3SGFg9CS/ln6MadNLHkbLw3dwIEud; + Expires=Fri, 14 Oct 2022 15:26:18 GMT; Path=/; SameSite=None; Secure + - csrftoken=7BGsJ47MxBm9JdTP37MmcsshvctFRtzloV8S381gqJnuq3jKLqO2Hfj9O1oAoCqN; + expires=Fri, 06 Oct 2023 15:26:19 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=yfxy1xtyojgbmja4o5ydww9t9dwpidfw; expires=Fri, 21 Oct 2022 15:26:19 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/d51a6810-a17e-42e4-8ede-81ae46ea0120/","id":"d51a6810-a17e-42e4-8ede-81ae46ea0120","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/d51a6810-a17e-42e4-8ede-81ae46ea0120/values/70737f9c-c3d1-42fb-8380-bfbbbedce6b7/","id":"70737f9c-c3d1-42fb-8380-bfbbbedce6b7","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/d51a6810-a17e-42e4-8ede-81ae46ea0120/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"newdefaultone","interpolated":false,"value":"newdefaultone","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:26:11.419226Z","modified_at":"2022-10-07T15:26:18.461916Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"newdefaultone"}},"overrides":null,"created_at":"2022-10-07T15:26:06.490985Z","modified_at":"2022-10-07T15:26:06.490985Z","templates":[]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/77f1dfe8-6e2a-4c92-8509-a5279b098603/","id":"77f1dfe8-6e2a-4c92-8509-a5279b098603","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/77f1dfe8-6e2a-4c92-8509-a5279b098603/values/a81dae4c-ae58-47fe-b054-3874ba6be1e7/","id":"a81dae4c-ae58-47fe-b054-3874ba6be1e7","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/77f1dfe8-6e2a-4c92-8509-a5279b098603/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"defaulttwo","interpolated":false,"value":"defaulttwo","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:26:12.922425Z","modified_at":"2022-10-07T15:26:12.922425Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaulttwo"}},"overrides":null,"created_at":"2022-10-07T15:26:08.026944Z","modified_at":"2022-10-07T15:26:08.026944Z","templates":[]}]}' + recorded_at: Fri, 07 Oct 2022 15:26:19 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 15:26:21 GMT + Content-Type: + - application/json + Content-Length: + - '805' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=qmrxFR4jeQGm3q1AtlmUy5C9KnZKsi3WDEDr7nd7Wvql3sa3IRK8bQq3yUsgxHQxlWTxT00OSFGWg1ofHovG4tQVs/pBNEm259P6TXFVIrlI31oWFVZQSjFHmEvM; + Expires=Fri, 14 Oct 2022 15:26:20 GMT; Path=/ + - AWSALBCORS=qmrxFR4jeQGm3q1AtlmUy5C9KnZKsi3WDEDr7nd7Wvql3sa3IRK8bQq3yUsgxHQxlWTxT00OSFGWg1ofHovG4tQVs/pBNEm259P6TXFVIrlI31oWFVZQSjFHmEvM; + Expires=Fri, 14 Oct 2022 15:26:20 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=9i4gX2ogyleccesZIPHH/WsCuOLw0vQ3enRmBNGVHLu1rLSfaAsJnjzYM+IlvUrCQJ4YyuWTRD2gA+tS4RwupC3XKMn00hjQbeZrr+u9N75aPuh2CzVfpp2pd9xeEWbUluksi8Jd7aJCPRuYi1wi+yVo4p0QHMu3XyPgHOWavB6D; + Expires=Fri, 14 Oct 2022 15:26:20 GMT; Path=/ + - AWSALBTGCORS=9i4gX2ogyleccesZIPHH/WsCuOLw0vQ3enRmBNGVHLu1rLSfaAsJnjzYM+IlvUrCQJ4YyuWTRD2gA+tS4RwupC3XKMn00hjQbeZrr+u9N75aPuh2CzVfpp2pd9xeEWbUluksi8Jd7aJCPRuYi1wi+yVo4p0QHMu3XyPgHOWavB6D; + Expires=Fri, 14 Oct 2022 15:26:20 GMT; Path=/; SameSite=None; Secure + - csrftoken=cxBpDvNm3y7aTGdrTMJ4ubiDwpVEAYW6aeJUldOf0FdXvGPX9gTsZC2ynVfuwviB; + expires=Fri, 06 Oct 2023 15:26:21 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=d5x51yndct9vg4rpntjkjyft1oh7ugek; expires=Fri, 21 Oct 2022 15:26:21 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/","id":"0c512ad6-b6c0-4363-956e-5b9074640ef4","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:26:03.232573Z","modified_at":"2022-10-07T15:26:03.232573Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:26:21 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/?environment=e8bc190d-0354-4e66-91c9-64501e501ec5 + uri: https://api.staging.cloudtruth.io/api/v1/environments/ body: encoding: US-ASCII string: '' @@ -783,7 +942,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -796,25 +955,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:47:09 GMT + - Fri, 07 Oct 2022 15:26:23 GMT Content-Type: - application/json Content-Length: - - '3200' + - '2085' Connection: - keep-alive Set-Cookie: - - AWSALB=GtVq9vBupKnh2WUYYxi+7r3W51tHO5kQZWhkCuTwZWospiuhPrtOZNnTgeZ/geg7zRXTCdWjczpwBbcsVf/gQX0NxPQFK874Erz+S+z5a7Mo5uXO0h6WyFYtCqbr; - Expires=Tue, 11 Jan 2022 19:47:09 GMT; Path=/ - - AWSALBCORS=GtVq9vBupKnh2WUYYxi+7r3W51tHO5kQZWhkCuTwZWospiuhPrtOZNnTgeZ/geg7zRXTCdWjczpwBbcsVf/gQX0NxPQFK874Erz+S+z5a7Mo5uXO0h6WyFYtCqbr; - Expires=Tue, 11 Jan 2022 19:47:09 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=gb5hakhGTCdw7OAbsMAr+sS8RbmgehKHtgCu8WmIQuly6GMr2PQWj1BWSSB2vkU8CAID1Oa45V24LB4ew7S3J5rpdo94d54R/B+9UHqjBEDdU0r5/gO/mVM8u+yvpRhdD/lP2cZzSTW4q2Fe2oeqHl6RGHKaNv3GbHgRhsQRIef9; - Expires=Tue, 11 Jan 2022 19:47:09 GMT; Path=/ - - AWSALBTGCORS=gb5hakhGTCdw7OAbsMAr+sS8RbmgehKHtgCu8WmIQuly6GMr2PQWj1BWSSB2vkU8CAID1Oa45V24LB4ew7S3J5rpdo94d54R/B+9UHqjBEDdU0r5/gO/mVM8u+yvpRhdD/lP2cZzSTW4q2Fe2oeqHl6RGHKaNv3GbHgRhsQRIef9; - Expires=Tue, 11 Jan 2022 19:47:09 GMT; Path=/; SameSite=None; Secure - - csrftoken=O6x7jrQMJ1HgSlBCpIjCJxTNofV0AsMZbDDXZqNRM1VTDQi30a5LGD5D2ckIEJQn; - expires=Tue, 03 Jan 2023 19:47:09 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=jfmn817b6by6scddhrgh9amalyv59ffp; expires=Tue, 18 Jan 2022 19:47:09 + - AWSALB=XkX5vYKgXDXTNo8eX86RxKEvJihIcZO6Mq8bgwIa5C/Xe4VD52oxqMFaiP+Gi4R0tO4QlcElpMdSk2K9wjZNEQd/DXWKPufNFeYimvEEjBswjLb9i1kEV+464D2T; + Expires=Fri, 14 Oct 2022 15:26:21 GMT; Path=/ + - AWSALBCORS=XkX5vYKgXDXTNo8eX86RxKEvJihIcZO6Mq8bgwIa5C/Xe4VD52oxqMFaiP+Gi4R0tO4QlcElpMdSk2K9wjZNEQd/DXWKPufNFeYimvEEjBswjLb9i1kEV+464D2T; + Expires=Fri, 14 Oct 2022 15:26:21 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=Bq2XaUBpAWRO6V8nMohqgs4vbszODYe9TZWA7IAyQV8ju57WySp2TzmU192l4NavJ1axk+HWwQjogAYTni61s/Z8x4TZ4MIQs5LcfSvdmRsvlsCwZmh6zjRVVgFfSzEBMfkyjrDXnoV8rbEuJYCWgifgCznJi4z6vz7vGsmBfrfZ; + Expires=Fri, 14 Oct 2022 15:26:21 GMT; Path=/ + - AWSALBTGCORS=Bq2XaUBpAWRO6V8nMohqgs4vbszODYe9TZWA7IAyQV8ju57WySp2TzmU192l4NavJ1axk+HWwQjogAYTni61s/Z8x4TZ4MIQs5LcfSvdmRsvlsCwZmh6zjRVVgFfSzEBMfkyjrDXnoV8rbEuJYCWgifgCznJi4z6vz7vGsmBfrfZ; + Expires=Fri, 14 Oct 2022 15:26:21 GMT; Path=/; SameSite=None; Secure + - csrftoken=AmDgabHGwD9BskPDNtGUh54OcuE3ZeD2gR0Ufypm1OJjXBhpny3LrncMNSoCo2t0; + expires=Fri, 06 Oct 2023 15:26:23 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=bbazscinevdcnywoitu6bmv1a5yp8leb; expires=Fri, 21 Oct 2022 15:26:23 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -832,11 +991,15 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/5515e1ea-d81e-45c6-8cf6-0bc5a571f655/","id":"5515e1ea-d81e-45c6-8cf6-0bc5a571f655","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":{"url":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/5515e1ea-d81e-45c6-8cf6-0bc5a571f655/values/91e9cf86-fa05-47f4-a5a4-69549841ad9f/","id":"91e9cf86-fa05-47f4-a5a4-69549841ad9f","environment":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","environment_name":"default","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/5515e1ea-d81e-45c6-8cf6-0bc5a571f655/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"newdefaultone","interpolated":false,"value":"newdefaultone","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:47:06.158646Z","modified_at":"2022-01-04T19:47:09.054700Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"newdefaultone"}},"created_at":"2022-01-04T19:47:03.849726Z","modified_at":"2022-01-04T19:47:09.054700Z","templates":[]},{"url":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/b3464fb6-7519-4502-9f9a-02808d471d9f/","id":"b3464fb6-7519-4502-9f9a-02808d471d9f","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":{"url":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/b3464fb6-7519-4502-9f9a-02808d471d9f/values/d03c1e85-b012-4e91-845c-79ac404e0f25/","id":"d03c1e85-b012-4e91-845c-79ac404e0f25","environment":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","environment_name":"default","earliest_tag":"test_tag","parameter":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/b3464fb6-7519-4502-9f9a-02808d471d9f/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"defaulttwo","interpolated":false,"value":"defaulttwo","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:47:06.697223Z","modified_at":"2022-01-04T19:47:06.697223Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaulttwo"}},"created_at":"2022-01-04T19:47:04.580627Z","modified_at":"2022-01-04T19:47:06.697223Z","templates":[]}]}' - recorded_at: Tue, 04 Jan 2022 19:47:09 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","id":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","name":"default","description":"Default + environment, base for all environments.","parent":null,"children":["https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/"],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.112161Z","modified_at":"2022-06-02T17:13:09.641786Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","id":"8f2e37b9-b429-4987-bb85-abd24bd67274","name":"development","description":"Development + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.123839Z","modified_at":"2022-06-02T17:11:55.123839Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","id":"0663ac09-5883-452b-bc1a-00e3347fece5","name":"production","description":"Production + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.145580Z","modified_at":"2022-06-02T17:11:55.145580Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/","id":"fc970cc2-c24f-427d-9c7a-70acde9f1b64","name":"staging","description":"Staging + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.134547Z","modified_at":"2022-06-02T17:11:55.134547Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:26:23 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/?environment=e8bc190d-0354-4e66-91c9-64501e501ec5&tag=test_tag + uri: https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76&tag=test_tag body: encoding: US-ASCII string: '' @@ -844,7 +1007,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -857,25 +1020,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:47:10 GMT + - Fri, 07 Oct 2022 15:26:29 GMT Content-Type: - application/json Content-Length: - - '3197' + - '3371' Connection: - keep-alive Set-Cookie: - - AWSALB=1rqs3zpcPPuBHKmbZPwKNkKZyjyjwwNaZbbnufYEq4he5BlrpTqCoBAXELmiKZuXELF/IP1Q2k5RkJcxwlHma5151gd5AUzfBp6v3IdsISAxy/u9Jdkr7xe3VwDO; - Expires=Tue, 11 Jan 2022 19:47:10 GMT; Path=/ - - AWSALBCORS=1rqs3zpcPPuBHKmbZPwKNkKZyjyjwwNaZbbnufYEq4he5BlrpTqCoBAXELmiKZuXELF/IP1Q2k5RkJcxwlHma5151gd5AUzfBp6v3IdsISAxy/u9Jdkr7xe3VwDO; - Expires=Tue, 11 Jan 2022 19:47:10 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=y5OYCyJhLGeBQZHMBVwqXVsC1Ns90Oenc0ZZtbSImjTfV9qdg736r9Osmg2Vg9dAntxdequHF3iXGMWMCfMVq3xwC3AWA7aslqGZYpJqqcVc61HF6sIB8/UBHCd3XGc/ffsKWEx27Di3NhSQlMfCMc0psHJq09zfyQ+NDdGJhAQY; - Expires=Tue, 11 Jan 2022 19:47:10 GMT; Path=/ - - AWSALBTGCORS=y5OYCyJhLGeBQZHMBVwqXVsC1Ns90Oenc0ZZtbSImjTfV9qdg736r9Osmg2Vg9dAntxdequHF3iXGMWMCfMVq3xwC3AWA7aslqGZYpJqqcVc61HF6sIB8/UBHCd3XGc/ffsKWEx27Di3NhSQlMfCMc0psHJq09zfyQ+NDdGJhAQY; - Expires=Tue, 11 Jan 2022 19:47:10 GMT; Path=/; SameSite=None; Secure - - csrftoken=ciRcR4zbm4atvWeZrGZ5e9TYffp3QbC2l7mco02rP1MeXOa7X72SxcXs5JcbEkCw; - expires=Tue, 03 Jan 2023 19:47:10 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=smhl3ki3ovhgndhh9zoxhc2rajb1vxoj; expires=Tue, 18 Jan 2022 19:47:10 + - AWSALB=O+m5iJxEg1r8Gyl6fsFhz9E6l0sJ657BSAgGmMn5ymUj7qZ8jDjbqcD1t1TtBUuw6sxZMDXXYp6WMF8+QyHMAq2Ipy/Zbh3OJ0PQiMRproLU4Hno8jPS7LqhF2Hj; + Expires=Fri, 14 Oct 2022 15:26:23 GMT; Path=/ + - AWSALBCORS=O+m5iJxEg1r8Gyl6fsFhz9E6l0sJ657BSAgGmMn5ymUj7qZ8jDjbqcD1t1TtBUuw6sxZMDXXYp6WMF8+QyHMAq2Ipy/Zbh3OJ0PQiMRproLU4Hno8jPS7LqhF2Hj; + Expires=Fri, 14 Oct 2022 15:26:23 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=jYfLnHHaOhIXnKdVNnCcDwi2bjXZH7QgvhDAGvmEGHybOyhYxpM+5EuFAaZ2KmSZ+t8GyiItD0bxiazqxtXgAmUlydX25idhglk0QhOLKL32IfYuXVFbVPTT4i9e/FxqECGAEaD6Lb4gqoPb412BSKzSl2U7BuNrhVbDBVZaRlE6; + Expires=Fri, 14 Oct 2022 15:26:23 GMT; Path=/ + - AWSALBTGCORS=jYfLnHHaOhIXnKdVNnCcDwi2bjXZH7QgvhDAGvmEGHybOyhYxpM+5EuFAaZ2KmSZ+t8GyiItD0bxiazqxtXgAmUlydX25idhglk0QhOLKL32IfYuXVFbVPTT4i9e/FxqECGAEaD6Lb4gqoPb412BSKzSl2U7BuNrhVbDBVZaRlE6; + Expires=Fri, 14 Oct 2022 15:26:23 GMT; Path=/; SameSite=None; Secure + - csrftoken=sUZIk2MIbFypC94urMbwIQv6epCPJYzbqyyHripRZVvdGxai2pMqS9ovKIuVWOD8; + expires=Fri, 06 Oct 2023 15:26:29 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=7aynyp16xx3g08rsn28ohu7n8jxddcq3; expires=Fri, 21 Oct 2022 15:26:29 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -893,6 +1056,6 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/5515e1ea-d81e-45c6-8cf6-0bc5a571f655/","id":"5515e1ea-d81e-45c6-8cf6-0bc5a571f655","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":{"url":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/5515e1ea-d81e-45c6-8cf6-0bc5a571f655/values/91e9cf86-fa05-47f4-a5a4-69549841ad9f/","id":"91e9cf86-fa05-47f4-a5a4-69549841ad9f","environment":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","environment_name":"default","earliest_tag":"test_tag","parameter":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/5515e1ea-d81e-45c6-8cf6-0bc5a571f655/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"defaultone","interpolated":false,"value":"defaultone","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:47:06.158646Z","modified_at":"2022-01-04T19:47:06.158646Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaultone"}},"created_at":"2022-01-04T19:47:03.849726Z","modified_at":"2022-01-04T19:47:03.849726Z","templates":[]},{"url":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/b3464fb6-7519-4502-9f9a-02808d471d9f/","id":"b3464fb6-7519-4502-9f9a-02808d471d9f","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":{"url":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/b3464fb6-7519-4502-9f9a-02808d471d9f/values/d03c1e85-b012-4e91-845c-79ac404e0f25/","id":"d03c1e85-b012-4e91-845c-79ac404e0f25","environment":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","environment_name":"default","earliest_tag":"test_tag","parameter":"https://api.cloudtruth.io/api/v1/projects/1d0d7483-a453-4ccf-aed3-b67114844f32/parameters/b3464fb6-7519-4502-9f9a-02808d471d9f/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"defaulttwo","interpolated":false,"value":"defaulttwo","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:47:06.697223Z","modified_at":"2022-01-04T19:47:06.697223Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaulttwo"}},"created_at":"2022-01-04T19:47:04.580627Z","modified_at":"2022-01-04T19:47:04.580627Z","templates":[]}]}' - recorded_at: Tue, 04 Jan 2022 19:47:10 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/d51a6810-a17e-42e4-8ede-81ae46ea0120/","id":"d51a6810-a17e-42e4-8ede-81ae46ea0120","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/d51a6810-a17e-42e4-8ede-81ae46ea0120/values/70737f9c-c3d1-42fb-8380-bfbbbedce6b7/","id":"70737f9c-c3d1-42fb-8380-bfbbbedce6b7","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/d51a6810-a17e-42e4-8ede-81ae46ea0120/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"defaultone","interpolated":false,"value":"defaultone","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:26:11.419226Z","modified_at":"2022-10-07T15:26:11.419226Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaultone"}},"overrides":null,"created_at":"2022-10-07T15:26:06.490985Z","modified_at":"2022-10-07T15:26:06.490985Z","templates":[]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/77f1dfe8-6e2a-4c92-8509-a5279b098603/","id":"77f1dfe8-6e2a-4c92-8509-a5279b098603","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/77f1dfe8-6e2a-4c92-8509-a5279b098603/values/a81dae4c-ae58-47fe-b054-3874ba6be1e7/","id":"a81dae4c-ae58-47fe-b054-3874ba6be1e7","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/0c512ad6-b6c0-4363-956e-5b9074640ef4/parameters/77f1dfe8-6e2a-4c92-8509-a5279b098603/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"defaulttwo","interpolated":false,"value":"defaulttwo","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:26:12.922425Z","modified_at":"2022-10-07T15:26:12.922425Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaulttwo"}},"overrides":null,"created_at":"2022-10-07T15:26:08.026944Z","modified_at":"2022-10-07T15:26:08.026944Z","templates":[]}]}' + recorded_at: Fri, 07 Oct 2022 15:26:29 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_types_with_parameters.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_types_with_parameters.yml index ec74ef3..566a13a 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_types_with_parameters.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_types_with_parameters.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -10,7 +10,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -23,25 +23,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:41:59 GMT + - Fri, 07 Oct 2022 15:27:06 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=1Pm3GUfM36+ihj6dESm0wlCQ6RMf0Da6wJZ0ETqGy6pNp6hhQKqYphkXhudWAZ1qGfYC1P4fCo/nOx4VU1gbSkcI2JWod9l5pjUw9HCYdUmh5ucmeWkOc3WYypgh; - Expires=Tue, 11 Jan 2022 19:41:59 GMT; Path=/ - - AWSALBCORS=1Pm3GUfM36+ihj6dESm0wlCQ6RMf0Da6wJZ0ETqGy6pNp6hhQKqYphkXhudWAZ1qGfYC1P4fCo/nOx4VU1gbSkcI2JWod9l5pjUw9HCYdUmh5ucmeWkOc3WYypgh; - Expires=Tue, 11 Jan 2022 19:41:59 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=/23v+7q2ZOlJA/cggkByXEwtxjc63pz7PxS0Pkuzutq5wrAHTL9dr48G46FR+sbRq8Do6EPFIy65HpYyAGl5KIxmboRQrv5TifjjeG/EZ46Kq0aUDBMCg/4sS7z1SOqHiSojKO84oPsqzI9UegtJVVlcAYljE8OB2G86yGuR2gab; - Expires=Tue, 11 Jan 2022 19:41:59 GMT; Path=/ - - AWSALBTGCORS=/23v+7q2ZOlJA/cggkByXEwtxjc63pz7PxS0Pkuzutq5wrAHTL9dr48G46FR+sbRq8Do6EPFIy65HpYyAGl5KIxmboRQrv5TifjjeG/EZ46Kq0aUDBMCg/4sS7z1SOqHiSojKO84oPsqzI9UegtJVVlcAYljE8OB2G86yGuR2gab; - Expires=Tue, 11 Jan 2022 19:41:59 GMT; Path=/; SameSite=None; Secure - - csrftoken=t1k7lw5pIfxaoJLl3GjPBIc7zADhjO9kozhwLd3eDRNCqlD5dTzD523pONis7eeM; - expires=Tue, 03 Jan 2023 19:41:59 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=nfutqusuvfye1lqdya6o0pokvxyg6vnj; expires=Tue, 18 Jan 2022 19:41:59 + - AWSALB=T17DtVwiupE6Lgo/hznTQUY1h6Bo7a9TVCIh9q40PFBEw5f18EliPuPAevjDwS/cmmMCG6nUDj6blZdnTeFrmgU1iBxs8+FNlrO7u2xuKVU+vKLxkY6dHoap9+83; + Expires=Fri, 14 Oct 2022 15:27:05 GMT; Path=/ + - AWSALBCORS=T17DtVwiupE6Lgo/hznTQUY1h6Bo7a9TVCIh9q40PFBEw5f18EliPuPAevjDwS/cmmMCG6nUDj6blZdnTeFrmgU1iBxs8+FNlrO7u2xuKVU+vKLxkY6dHoap9+83; + Expires=Fri, 14 Oct 2022 15:27:05 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=2CwvjAJXpItj/UYbaKpVJXlx8nZb/7bwGs3AYEeUjVcdFrUnZZ+kk7d8Yd2j+tB63+LepcEkIX3CrrTxviytXy4a1ka24UfJ0tUwyeCjKKyqp75gyR5T7VxPkOO7uf6RuuP8kWc9V4Ax2Q6y1FnysVkBDliTUHjwjUjOL8+kQxXS; + Expires=Fri, 14 Oct 2022 15:27:05 GMT; Path=/ + - AWSALBTGCORS=2CwvjAJXpItj/UYbaKpVJXlx8nZb/7bwGs3AYEeUjVcdFrUnZZ+kk7d8Yd2j+tB63+LepcEkIX3CrrTxviytXy4a1ka24UfJ0tUwyeCjKKyqp75gyR5T7VxPkOO7uf6RuuP8kWc9V4Ax2Q6y1FnysVkBDliTUHjwjUjOL8+kQxXS; + Expires=Fri, 14 Oct 2022 15:27:05 GMT; Path=/; SameSite=None; Secure + - csrftoken=5U9gzRaSB3aQLOsGkKYphajiH3xNtP2mTw73UxcyPsmhEQvaKDCPOTvyJCNtAQL0; + expires=Fri, 06 Oct 2023 15:27:06 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=tfpalygnusm5kprod0075n90x7lvlfpv; expires=Fri, 21 Oct 2022 15:27:06 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -59,23 +59,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/309c699b-410d-46c1-a1eb-b875a4096118/","id":"309c699b-410d-46c1-a1eb-b875a4096118","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T19:41:02.811055Z","modified_at":"2022-01-04T19:41:07.743297Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 19:41:59 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/4b4fb08a-8fcb-4cc5-b2cd-527d92fb04f4/","id":"4b4fb08a-8fcb-4cc5-b2cd-527d92fb04f4","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:26:51.512287Z","modified_at":"2022-10-07T15:26:51.512287Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:27:06 GMT - request: method: delete - uri: https://api.cloudtruth.io/api/v1/projects/309c699b-410d-46c1-a1eb-b875a4096118/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/4b4fb08a-8fcb-4cc5-b2cd-527d92fb04f4/ body: encoding: US-ASCII string: '' @@ -83,7 +72,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Authorization: - Api-Key Accept-Encoding: @@ -96,23 +85,23 @@ http_interactions: message: No Content headers: Date: - - Tue, 04 Jan 2022 19:42:00 GMT + - Fri, 07 Oct 2022 15:27:08 GMT Content-Length: - '0' Connection: - keep-alive Set-Cookie: - - AWSALB=PJDYrND6cfoJPdd0Bpir7b0SgdGG4J9t0uh+BB94d3LN54fFspCmFDCpS3Q6v05SZVEg4LDTaDJVRGlsBOlQet/y/iA94yhVeY51zVFiJovdFGieZJigRl5b4Nqh; - Expires=Tue, 11 Jan 2022 19:42:00 GMT; Path=/ - - AWSALBCORS=PJDYrND6cfoJPdd0Bpir7b0SgdGG4J9t0uh+BB94d3LN54fFspCmFDCpS3Q6v05SZVEg4LDTaDJVRGlsBOlQet/y/iA94yhVeY51zVFiJovdFGieZJigRl5b4Nqh; - Expires=Tue, 11 Jan 2022 19:42:00 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=PjYjYd5WEQzZyEq+kCQ0FuwGIeW/rulWU0WbeNigBAmgZRGr6px7hsc1VMbsQug7k/hNyJCzgqcy5jsAmOL41pgxsya7irtl/i+Stba9ojZzFPQFj5EF3H6mSvzjrC9i2kv0cFuztrk5aluo5nu9xfG5vg8CZ/ymqcjb7GwDsO6i; - Expires=Tue, 11 Jan 2022 19:42:00 GMT; Path=/ - - AWSALBTGCORS=PjYjYd5WEQzZyEq+kCQ0FuwGIeW/rulWU0WbeNigBAmgZRGr6px7hsc1VMbsQug7k/hNyJCzgqcy5jsAmOL41pgxsya7irtl/i+Stba9ojZzFPQFj5EF3H6mSvzjrC9i2kv0cFuztrk5aluo5nu9xfG5vg8CZ/ymqcjb7GwDsO6i; - Expires=Tue, 11 Jan 2022 19:42:00 GMT; Path=/; SameSite=None; Secure - - csrftoken=IYIDV95LHjAWO2AIk4xHSZ50ZCWssVRM45tSueoB94dMhpwLsdL6OUAgrLxmu5P3; - expires=Tue, 03 Jan 2023 19:42:00 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=i5drv2rsqhotqt4i6t37i15a4y82qlk5; expires=Tue, 18 Jan 2022 19:42:00 + - AWSALB=MznG1LNAbvHitSyw9r9hn5YRRwKgcAsBZd6hNsWsGM4YQA4XgvHxpnH064rG/NeG4f6D4Y8eIiu7xBP0tIxnhg50jhwC+CoNgX/5NY6w/waH//LW+tkD/F8p0h8O; + Expires=Fri, 14 Oct 2022 15:27:06 GMT; Path=/ + - AWSALBCORS=MznG1LNAbvHitSyw9r9hn5YRRwKgcAsBZd6hNsWsGM4YQA4XgvHxpnH064rG/NeG4f6D4Y8eIiu7xBP0tIxnhg50jhwC+CoNgX/5NY6w/waH//LW+tkD/F8p0h8O; + Expires=Fri, 14 Oct 2022 15:27:06 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=7+K2gFv9hS+FKL3SNqO8dAoHvL39TtfA9IytSg5JFqpo/bWLG2HG/iCH+wz2A/f7QqPD/JnbofDctvHZmvEO8LGrh7HNdAdj/s9pmEKCuk/G5klSMiPchBJoIeuxItwANzy3a8koPkUm4sLlFKVkWYw/2dM+daWNVbwTCJVj+TTI; + Expires=Fri, 14 Oct 2022 15:27:06 GMT; Path=/ + - AWSALBTGCORS=7+K2gFv9hS+FKL3SNqO8dAoHvL39TtfA9IytSg5JFqpo/bWLG2HG/iCH+wz2A/f7QqPD/JnbofDctvHZmvEO8LGrh7HNdAdj/s9pmEKCuk/G5klSMiPchBJoIeuxItwANzy3a8koPkUm4sLlFKVkWYw/2dM+daWNVbwTCJVj+TTI; + Expires=Fri, 14 Oct 2022 15:27:06 GMT; Path=/; SameSite=None; Secure + - csrftoken=eItRiKVdiotwoz2uSB2rAlGje0gnu5rDIRtVwSXOA5n9nqYJaXGILujbPYJ4TNO4; + expires=Fri, 06 Oct 2023 15:27:08 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=k3s83g8ub5cp3nypskmzhitrpzw5qd6u; expires=Fri, 21 Oct 2022 15:27:08 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -131,10 +120,10 @@ http_interactions: body: encoding: UTF-8 string: '' - recorded_at: Tue, 04 Jan 2022 19:42:00 GMT + recorded_at: Fri, 07 Oct 2022 15:27:08 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: UTF-8 string: '{"name":"TestProject"}' @@ -142,7 +131,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -155,30 +144,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:42:01 GMT + - Fri, 07 Oct 2022 15:27:09 GMT Content-Type: - application/json Content-Length: - - '304' + - '365' Connection: - keep-alive Set-Cookie: - - AWSALB=nUDXglFhlP50tyQdMRI8ve94YhjP3T8d5omUXZ0pq3BhpjBMVyuDe8QoL4xySE9fjOGfP9AHbdZFXgaRvtbHCfqo1QG2YfkauOBk35+kcctBGo63JEHlGol5ZI1R; - Expires=Tue, 11 Jan 2022 19:42:00 GMT; Path=/ - - AWSALBCORS=nUDXglFhlP50tyQdMRI8ve94YhjP3T8d5omUXZ0pq3BhpjBMVyuDe8QoL4xySE9fjOGfP9AHbdZFXgaRvtbHCfqo1QG2YfkauOBk35+kcctBGo63JEHlGol5ZI1R; - Expires=Tue, 11 Jan 2022 19:42:00 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=6NlobMYj+HoBehGotkU/UXSS0LZwxOSeFUGjBmj5eIbh8xXJ+JDyqHdPYedJkuXxAl85XmQSOrdRPb+NdmEo9QyGEIMC/kFFF8N/MdiRJqAm3h54i3cw/9lfb4rGxB22m6CYB0L6fm89HtUpx526cRiDQoRQQzXfRFYYUOPiG0+I; - Expires=Tue, 11 Jan 2022 19:42:00 GMT; Path=/ - - AWSALBTGCORS=6NlobMYj+HoBehGotkU/UXSS0LZwxOSeFUGjBmj5eIbh8xXJ+JDyqHdPYedJkuXxAl85XmQSOrdRPb+NdmEo9QyGEIMC/kFFF8N/MdiRJqAm3h54i3cw/9lfb4rGxB22m6CYB0L6fm89HtUpx526cRiDQoRQQzXfRFYYUOPiG0+I; - Expires=Tue, 11 Jan 2022 19:42:00 GMT; Path=/; SameSite=None; Secure - - csrftoken=UjHBLEqi41v4aI44mqeyEM0RSeWZ16tFfHDrUMaVRPBAPA6IPxEAWLYQdZtHxQ7u; - expires=Tue, 03 Jan 2023 19:42:01 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=3xxksvt0ckn07iz2fok0uqs1053xer7d; expires=Tue, 18 Jan 2022 19:42:01 + - AWSALB=MpP+H0HyBAZlnWsLq4RLxJ4fiVyOSiGYn8UZIL/+1slIrC/ckf72PhizK8Wht0Fw8tZN+3UUyufBuxj9dZMiiNgEgjHwrA9f1lxn/MOcC4OotqIZeWBkIZGUQiQL; + Expires=Fri, 14 Oct 2022 15:27:08 GMT; Path=/ + - AWSALBCORS=MpP+H0HyBAZlnWsLq4RLxJ4fiVyOSiGYn8UZIL/+1slIrC/ckf72PhizK8Wht0Fw8tZN+3UUyufBuxj9dZMiiNgEgjHwrA9f1lxn/MOcC4OotqIZeWBkIZGUQiQL; + Expires=Fri, 14 Oct 2022 15:27:08 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=ijwGv70+CN7hITmx31tBEOrylseJi7MbssqPXxztiSGlWPSM7QMytkWhnfEnCGEk6592bUgMXRng2HCD9wL+EPT+mPqp5csRg+w78lQ1NHM1npTdhh/Cph4HnuKNwy4tJ/UV2qZra0jxO7GMolTgG8P72oom1o8M3/f8RCbeDjag; + Expires=Fri, 14 Oct 2022 15:27:08 GMT; Path=/ + - AWSALBTGCORS=ijwGv70+CN7hITmx31tBEOrylseJi7MbssqPXxztiSGlWPSM7QMytkWhnfEnCGEk6592bUgMXRng2HCD9wL+EPT+mPqp5csRg+w78lQ1NHM1npTdhh/Cph4HnuKNwy4tJ/UV2qZra0jxO7GMolTgG8P72oom1o8M3/f8RCbeDjag; + Expires=Fri, 14 Oct 2022 15:27:08 GMT; Path=/; SameSite=None; Secure + - csrftoken=Ly1nKpcHWuZOs3J3hHPp74ztDOoqL6PqJm1lbPlE4DXMzlhUEgeNbsnhgoONZ0Bb; + expires=Fri, 06 Oct 2023 15:27:09 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ya0jepjfmv8piw9ofnnbe5bsy460s77e; expires=Fri, 21 Oct 2022 15:27:09 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/ + - https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/ Vary: - Accept, Cookie, Origin Allow: @@ -193,11 +182,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/","id":"ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T19:42:01.269478Z","modified_at":"2022-01-04T19:42:01.269478Z"}' - recorded_at: Tue, 04 Jan 2022 19:42:01 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/","id":"fffdbf77-fa0b-4f53-8f04-8ec4c9455fda","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:27:09.613424Z","modified_at":"2022-10-07T15:27:09.613424Z"}' + recorded_at: Fri, 07 Oct 2022 15:27:09 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -205,7 +194,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -218,25 +207,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:42:01 GMT + - Fri, 07 Oct 2022 15:27:10 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=Fx0odaxNo4K5CGySwHmGjcaWTghfq0tL2jWDgG2YqyHaKl1eszCbtdD1uxpUrNj1wWlZF0yAtf8mGMEKGYfGomZ/yKVMcsFjYVpVchN75AwV6fZrHjBFj7tuJIGZ; - Expires=Tue, 11 Jan 2022 19:42:01 GMT; Path=/ - - AWSALBCORS=Fx0odaxNo4K5CGySwHmGjcaWTghfq0tL2jWDgG2YqyHaKl1eszCbtdD1uxpUrNj1wWlZF0yAtf8mGMEKGYfGomZ/yKVMcsFjYVpVchN75AwV6fZrHjBFj7tuJIGZ; - Expires=Tue, 11 Jan 2022 19:42:01 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=/sgpvXGWmdH5O9agfQSVugOsFhe5P7IUQmEI2wVs1ma9LN6Auu4BoAqrJMduUdqJI2cBklFgUrU6vyJNOw1rrS4wiDdOQojNv+oP5MLDzcHatFdX10v+KhhN7hHcrJ0nQ2suWP/KWpR3Z4qw8kv86M0bLkryokZD22ned5TSlFjl; - Expires=Tue, 11 Jan 2022 19:42:01 GMT; Path=/ - - AWSALBTGCORS=/sgpvXGWmdH5O9agfQSVugOsFhe5P7IUQmEI2wVs1ma9LN6Auu4BoAqrJMduUdqJI2cBklFgUrU6vyJNOw1rrS4wiDdOQojNv+oP5MLDzcHatFdX10v+KhhN7hHcrJ0nQ2suWP/KWpR3Z4qw8kv86M0bLkryokZD22ned5TSlFjl; - Expires=Tue, 11 Jan 2022 19:42:01 GMT; Path=/; SameSite=None; Secure - - csrftoken=3kZwzDwKamnhsc8vOxEVhU9vwk7ui5h3fGkjoBqJZCQGZQBfhm6GoaNV2YZlHDeY; - expires=Tue, 03 Jan 2023 19:42:01 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=y7at39u1w6ta1tngy08txw6ugc0senj4; expires=Tue, 18 Jan 2022 19:42:01 + - AWSALB=kcQSQCCWiHoX063nXU5rKw+x4VGmX60QAd/70V+gBJ8KsJevxNUDRBcX93xqA+JaXTDJyXrK5V/CSvuPEzVtvwP2wSqZLr/38u1vLReWyQU+bbSsb6mi0Rwc/4pD; + Expires=Fri, 14 Oct 2022 15:27:09 GMT; Path=/ + - AWSALBCORS=kcQSQCCWiHoX063nXU5rKw+x4VGmX60QAd/70V+gBJ8KsJevxNUDRBcX93xqA+JaXTDJyXrK5V/CSvuPEzVtvwP2wSqZLr/38u1vLReWyQU+bbSsb6mi0Rwc/4pD; + Expires=Fri, 14 Oct 2022 15:27:09 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=A0Hj5uE6xkUz/oMHnCO7tPWfQbi5IMYG+XpErqTetzWHty5UgRdV0k4plVTjMxeaCx2Ql6ZI5eL/AQSbktrBo3ipojo57FxZQ8qc0qDv7sYNCkNosg7zoClAwISd6UcDiTGrblCm6bb3x0pAKH3HL2zC1mO+3Q7DOJngMZU3xoB4; + Expires=Fri, 14 Oct 2022 15:27:09 GMT; Path=/ + - AWSALBTGCORS=A0Hj5uE6xkUz/oMHnCO7tPWfQbi5IMYG+XpErqTetzWHty5UgRdV0k4plVTjMxeaCx2Ql6ZI5eL/AQSbktrBo3ipojo57FxZQ8qc0qDv7sYNCkNosg7zoClAwISd6UcDiTGrblCm6bb3x0pAKH3HL2zC1mO+3Q7DOJngMZU3xoB4; + Expires=Fri, 14 Oct 2022 15:27:09 GMT; Path=/; SameSite=None; Secure + - csrftoken=DkAfNv3D1lGz3L6B92W4wJsNvd5Ezr9gk2IbNuk7MLjbe4U0oV4q8PqMiLFpBPpD; + expires=Fri, 06 Oct 2023 15:27:10 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ineil2sb15tbj3wr4h49pm1yopy06zwe; expires=Fri, 21 Oct 2022 15:27:10 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -254,23 +243,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/","id":"ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T19:42:01.269478Z","modified_at":"2022-01-04T19:42:01.269478Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 19:42:01 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/","id":"fffdbf77-fa0b-4f53-8f04-8ec4c9455fda","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:27:09.613424Z","modified_at":"2022-10-07T15:27:09.613424Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:27:10 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/ body: encoding: UTF-8 string: '{"name":"one","type":"string"}' @@ -278,7 +256,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -291,30 +269,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:42:02 GMT + - Fri, 07 Oct 2022 15:27:12 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=KQ5YNCLheQCM+0lptfGwLjaGcX6z89iWgbABOppbs5YINMdalpaZVMg2nqN4JMPoWQ8vbDxiozQs7/ZMfNxldMG8YelW+MDl5FLZ09vkJVR+TTz+p6RKaH+oNUOu; - Expires=Tue, 11 Jan 2022 19:42:02 GMT; Path=/ - - AWSALBCORS=KQ5YNCLheQCM+0lptfGwLjaGcX6z89iWgbABOppbs5YINMdalpaZVMg2nqN4JMPoWQ8vbDxiozQs7/ZMfNxldMG8YelW+MDl5FLZ09vkJVR+TTz+p6RKaH+oNUOu; - Expires=Tue, 11 Jan 2022 19:42:02 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=m6MHVX0jntYl/J/RTiSHm6FOq00dE6jdC4a3Asbyp6OeS8EcftEoi5bnjcz2bajvrZzUxBGAIAUnY0bN1ty8+9cIG0Mp2Z/LEHgkVH4ZIcdPBpePgQTheG/UK39h61FjjkAgu26zFpEB3aBVTcgVR909rnABkJi4Flhh5T8WtrFR; - Expires=Tue, 11 Jan 2022 19:42:02 GMT; Path=/ - - AWSALBTGCORS=m6MHVX0jntYl/J/RTiSHm6FOq00dE6jdC4a3Asbyp6OeS8EcftEoi5bnjcz2bajvrZzUxBGAIAUnY0bN1ty8+9cIG0Mp2Z/LEHgkVH4ZIcdPBpePgQTheG/UK39h61FjjkAgu26zFpEB3aBVTcgVR909rnABkJi4Flhh5T8WtrFR; - Expires=Tue, 11 Jan 2022 19:42:02 GMT; Path=/; SameSite=None; Secure - - csrftoken=hBNjg0ZhxtgOTdwxOA1TQtbnok82Y7xbIGwj7GWbfZztIGROooCqsI7FRffnkRbS; - expires=Tue, 03 Jan 2023 19:42:02 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=3q7kl2b3kyerm6zqcprejqavuq1tzqcv; expires=Tue, 18 Jan 2022 19:42:02 + - AWSALB=fliQGE6WVXD6Cgr5XMNxeylpncIKS3PhFdQH3Z6C3cBqsbN1/aHri2uYTyYqwB8PSA5e7Td1R0eD+sZHz/DRAZgEoVcHYY0pXqQcKgh+aBhR7U6P+B176wmkUqdb; + Expires=Fri, 14 Oct 2022 15:27:11 GMT; Path=/ + - AWSALBCORS=fliQGE6WVXD6Cgr5XMNxeylpncIKS3PhFdQH3Z6C3cBqsbN1/aHri2uYTyYqwB8PSA5e7Td1R0eD+sZHz/DRAZgEoVcHYY0pXqQcKgh+aBhR7U6P+B176wmkUqdb; + Expires=Fri, 14 Oct 2022 15:27:11 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=VW+u0CqtDwPioCMyQ8StogjtFM4dn6BfdNGKdBeyDkYhFs5Qt39SZwAK5XHAeiizIzAnanQpuG6arqNQiX87zU7Da0h+q8R78ItoewrxSq7yDehVfQwjrammT+CoVZTHqQqZDsEdg1jHlwLX6W6pbNdxEX84+0z5SLPxd0rnXKKI; + Expires=Fri, 14 Oct 2022 15:27:11 GMT; Path=/ + - AWSALBTGCORS=VW+u0CqtDwPioCMyQ8StogjtFM4dn6BfdNGKdBeyDkYhFs5Qt39SZwAK5XHAeiizIzAnanQpuG6arqNQiX87zU7Da0h+q8R78ItoewrxSq7yDehVfQwjrammT+CoVZTHqQqZDsEdg1jHlwLX6W6pbNdxEX84+0z5SLPxd0rnXKKI; + Expires=Fri, 14 Oct 2022 15:27:11 GMT; Path=/; SameSite=None; Secure + - csrftoken=TfNAfJDVHZpn5MiVHymfqZW18aISB4SS29BOUTMg9dzIaqqvkMwa255pjrKemTbu; + expires=Fri, 06 Oct 2023 15:27:12 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ht94szbdbaymfyo511b7w8i8em6227el; expires=Fri, 21 Oct 2022 15:27:12 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/7e39febc-4946-4e74-bd92-d3ec6d85bcde/ + - https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/66f9aed7-d7b7-4e4b-b99e-c4aa8897aacc/ Vary: - Accept, Cookie, Origin Allow: @@ -329,11 +307,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/7e39febc-4946-4e74-bd92-d3ec6d85bcde/","id":"7e39febc-4946-4e74-bd92-d3ec6d85bcde","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T19:42:02.325251Z","modified_at":"2022-01-04T19:42:02.325251Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 19:42:02 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/66f9aed7-d7b7-4e4b-b99e-c4aa8897aacc/","id":"66f9aed7-d7b7-4e4b-b99e-c4aa8897aacc","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:27:12.325244Z","modified_at":"2022-10-07T15:27:12.325244Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:27:12 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/ body: encoding: UTF-8 string: '{"name":"two","type":"string"}' @@ -341,7 +319,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -354,30 +332,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:42:03 GMT + - Fri, 07 Oct 2022 15:27:14 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=lEMw1DmKsVAzLE/CAImpi5MfcDbGaXRYZddoOqvvKpsNNIqNzgvsoMBTnfiRVcSesP8IsuxEgcnhwlZZsqkhaJQa/x8mE/fV1NoBbOdD138Hgt4EivEE5z5zikjg; - Expires=Tue, 11 Jan 2022 19:42:02 GMT; Path=/ - - AWSALBCORS=lEMw1DmKsVAzLE/CAImpi5MfcDbGaXRYZddoOqvvKpsNNIqNzgvsoMBTnfiRVcSesP8IsuxEgcnhwlZZsqkhaJQa/x8mE/fV1NoBbOdD138Hgt4EivEE5z5zikjg; - Expires=Tue, 11 Jan 2022 19:42:02 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=3cyrzK0MkRVXkKXc2r/KkdUcoRmnWtAWRxENgntd3uwn0iGdXBbKX7oF1f4KqJySv/tsbJ/WzP1J3/nJmLIBpxcPywrAY8gqUy086LaWQvm3lo8THR4oRvhffqeMeispw4a2E24Ntg8COIeKyL5DpqLnccb2ySG6ucW9gQthYnQa; - Expires=Tue, 11 Jan 2022 19:42:02 GMT; Path=/ - - AWSALBTGCORS=3cyrzK0MkRVXkKXc2r/KkdUcoRmnWtAWRxENgntd3uwn0iGdXBbKX7oF1f4KqJySv/tsbJ/WzP1J3/nJmLIBpxcPywrAY8gqUy086LaWQvm3lo8THR4oRvhffqeMeispw4a2E24Ntg8COIeKyL5DpqLnccb2ySG6ucW9gQthYnQa; - Expires=Tue, 11 Jan 2022 19:42:02 GMT; Path=/; SameSite=None; Secure - - csrftoken=lTt3xV7s31LA0xykYOVySiszPPMLJPfAQwdvU84MBFUvZF8gsqhV3dQu0Ui4Ph1N; - expires=Tue, 03 Jan 2023 19:42:03 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=5t9ybzolfm2pbpektdm3ez9ure83tv0t; expires=Tue, 18 Jan 2022 19:42:03 + - AWSALB=I5+reaaMGcOOXLYMsoF3MmR2neOW+7bsO+R8fQH+aCD92XBYFYkkXnh/HsQgYlTqMcISpDy3NyhXkh7WoJMB1PBV8AWZvvRzblKwCdif7t3QECllvPH1nb5uNYvC; + Expires=Fri, 14 Oct 2022 15:27:12 GMT; Path=/ + - AWSALBCORS=I5+reaaMGcOOXLYMsoF3MmR2neOW+7bsO+R8fQH+aCD92XBYFYkkXnh/HsQgYlTqMcISpDy3NyhXkh7WoJMB1PBV8AWZvvRzblKwCdif7t3QECllvPH1nb5uNYvC; + Expires=Fri, 14 Oct 2022 15:27:12 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=ot9Ri+ZizZ6xww/scrfvldFmq/H2xRf+E4b0Yd1SOXawrkZCNawWbL8kiPcKUZBCjjmwn32nj90RfhN1YiMhSrxJOnMo4Ie9SmL56DreZHBkbckxwhAhKlWLyLGwWDijvcv7Qk9D4q8TAziRRNPc2XlfIb57HWVRtxWMc1uPDoHR; + Expires=Fri, 14 Oct 2022 15:27:12 GMT; Path=/ + - AWSALBTGCORS=ot9Ri+ZizZ6xww/scrfvldFmq/H2xRf+E4b0Yd1SOXawrkZCNawWbL8kiPcKUZBCjjmwn32nj90RfhN1YiMhSrxJOnMo4Ie9SmL56DreZHBkbckxwhAhKlWLyLGwWDijvcv7Qk9D4q8TAziRRNPc2XlfIb57HWVRtxWMc1uPDoHR; + Expires=Fri, 14 Oct 2022 15:27:12 GMT; Path=/; SameSite=None; Secure + - csrftoken=ThBOqz6O3HK5T24opgfHh1x7E9yHxUB3Pfra4aOgXl9xw3JhpDGCqqwvaZoDzCrG; + expires=Fri, 06 Oct 2023 15:27:14 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=brp9oypedwsy77p0rjasnyxcs30gql5y; expires=Fri, 21 Oct 2022 15:27:14 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/ea286016-101f-4d51-baab-b3c998dd0a08/ + - https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/ea7b1bb1-bce9-46c9-9bdf-9a5d75aed911/ Vary: - Accept, Cookie, Origin Allow: @@ -392,11 +370,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/ea286016-101f-4d51-baab-b3c998dd0a08/","id":"ea286016-101f-4d51-baab-b3c998dd0a08","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T19:42:02.952085Z","modified_at":"2022-01-04T19:42:02.952085Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 19:42:03 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/ea7b1bb1-bce9-46c9-9bdf-9a5d75aed911/","id":"ea7b1bb1-bce9-46c9-9bdf-9a5d75aed911","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:27:14.176433Z","modified_at":"2022-10-07T15:27:14.176433Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:27:14 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/ body: encoding: UTF-8 string: '{"name":"bool_param","type":"boolean"}' @@ -404,7 +382,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -417,30 +395,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:42:03 GMT + - Fri, 07 Oct 2022 15:27:16 GMT Content-Type: - application/json Content-Length: - - '1365' + - '975' Connection: - keep-alive Set-Cookie: - - AWSALB=LsxuqVG2ggHPxTqJgIPaFpiunD8nsvgT2hysWZZHbGgdrQJw3JTywveX0Ba2SIkA6Bsx1VcXDVB9+JTlTGepopJKb+oi4hSbLcl6ngAoCC7dNBQSfrhxqDp9Els/; - Expires=Tue, 11 Jan 2022 19:42:03 GMT; Path=/ - - AWSALBCORS=LsxuqVG2ggHPxTqJgIPaFpiunD8nsvgT2hysWZZHbGgdrQJw3JTywveX0Ba2SIkA6Bsx1VcXDVB9+JTlTGepopJKb+oi4hSbLcl6ngAoCC7dNBQSfrhxqDp9Els/; - Expires=Tue, 11 Jan 2022 19:42:03 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=Dmx9mNXGPh7dNhuP8gMUNXOnMJJnGGYlUIm/Bx2gADchHA6Avk9f1FrlIy0MbpsxG6lSIeiPp7/JOLRj2iU8dUk9woNqPDCyPSCH+idaXPym5YxQd53jm9RFZGYS0cLX0MrcIbOuJKjGH4nOmxazn6EKjqop575ueEkW/1K6DcbX; - Expires=Tue, 11 Jan 2022 19:42:03 GMT; Path=/ - - AWSALBTGCORS=Dmx9mNXGPh7dNhuP8gMUNXOnMJJnGGYlUIm/Bx2gADchHA6Avk9f1FrlIy0MbpsxG6lSIeiPp7/JOLRj2iU8dUk9woNqPDCyPSCH+idaXPym5YxQd53jm9RFZGYS0cLX0MrcIbOuJKjGH4nOmxazn6EKjqop575ueEkW/1K6DcbX; - Expires=Tue, 11 Jan 2022 19:42:03 GMT; Path=/; SameSite=None; Secure - - csrftoken=oTbfSgbRL0b4px0H9idV1ctlmGXncVZ8K0jTQggZyXl70asRToDX0zK1KUmgpBR4; - expires=Tue, 03 Jan 2023 19:42:03 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=sxrh2nupq9mjhikjlawch8frp2exq0kx; expires=Tue, 18 Jan 2022 19:42:03 + - AWSALB=NfxNpGbgsU4PxTplTciNk7e0Am971aR57VbLnIptQU4+BakWr54x2TF8xqaI1XhaJHOeJ9UxCp20ghci3TM46cKvBUTRTFLpTkqoVfyd5YykB+H1iW+6hn28W2MO; + Expires=Fri, 14 Oct 2022 15:27:14 GMT; Path=/ + - AWSALBCORS=NfxNpGbgsU4PxTplTciNk7e0Am971aR57VbLnIptQU4+BakWr54x2TF8xqaI1XhaJHOeJ9UxCp20ghci3TM46cKvBUTRTFLpTkqoVfyd5YykB+H1iW+6hn28W2MO; + Expires=Fri, 14 Oct 2022 15:27:14 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=RTqa7i7SvuiTKYv7CyhOYPPkJJxxtcdx663BwI5G4FwNGq7AUf5ZKOxSx35wyXQReJS6xX7Hb/2yOlFjBzDcm16i6UlI8FuzpM0z8uwXX2LXhhAtIgk1AsXL+tvAq3Ut1perIOaEeKpr0Q7tV8K6LdK5EEiwRTxJa40RvhThqXPP; + Expires=Fri, 14 Oct 2022 15:27:14 GMT; Path=/ + - AWSALBTGCORS=RTqa7i7SvuiTKYv7CyhOYPPkJJxxtcdx663BwI5G4FwNGq7AUf5ZKOxSx35wyXQReJS6xX7Hb/2yOlFjBzDcm16i6UlI8FuzpM0z8uwXX2LXhhAtIgk1AsXL+tvAq3Ut1perIOaEeKpr0Q7tV8K6LdK5EEiwRTxJa40RvhThqXPP; + Expires=Fri, 14 Oct 2022 15:27:14 GMT; Path=/; SameSite=None; Secure + - csrftoken=x3SISjsbh3bqVhtJGvyp6CqbdON1Nk8AIolTr6Mwk2o6PtPONFEJgwHsPXLX9pPg; + expires=Fri, 06 Oct 2023 15:27:16 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=92lz43nf5xjkjmlibbul2g4ro896n2xs; expires=Fri, 21 Oct 2022 15:27:16 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/d07d3f2b-38eb-4a3e-b730-4ed57fb3da54/ + - https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/d3f0165d-1038-4386-9a04-a99af55d2782/ Vary: - Accept, Cookie, Origin Allow: @@ -455,11 +433,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/d07d3f2b-38eb-4a3e-b730-4ed57fb3da54/","id":"d07d3f2b-38eb-4a3e-b730-4ed57fb3da54","name":"bool_param","description":"","secret":false,"type":"boolean","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T19:42:03.529718Z","modified_at":"2022-01-04T19:42:03.529718Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 19:42:03 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/d3f0165d-1038-4386-9a04-a99af55d2782/","id":"d3f0165d-1038-4386-9a04-a99af55d2782","name":"bool_param","description":"","secret":false,"type":"boolean","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:27:16.020151Z","modified_at":"2022-10-07T15:27:16.020151Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:27:16 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/ body: encoding: UTF-8 string: '{"name":"int_param","type":"integer"}' @@ -467,7 +445,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -480,30 +458,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:42:04 GMT + - Fri, 07 Oct 2022 15:27:17 GMT Content-Type: - application/json Content-Length: - - '1364' + - '974' Connection: - keep-alive Set-Cookie: - - AWSALB=wGRMZQAufi+PaCsbx0s3v1eZPkmOshxA4goZIVzumRbPw3gAJuTjBpgnCZUKxClg3ZoOLt43rjuHMmRKpuj4TdK63HU8IdmsiZ9qD9R+iTSKd3SaVHsDovENH1ym; - Expires=Tue, 11 Jan 2022 19:42:03 GMT; Path=/ - - AWSALBCORS=wGRMZQAufi+PaCsbx0s3v1eZPkmOshxA4goZIVzumRbPw3gAJuTjBpgnCZUKxClg3ZoOLt43rjuHMmRKpuj4TdK63HU8IdmsiZ9qD9R+iTSKd3SaVHsDovENH1ym; - Expires=Tue, 11 Jan 2022 19:42:03 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=8IMm4mV6cwGy04pdAzPAiixr39zmXW85HPQWqDaBHXa6H+OYr9Q162foa48HfXm4G+7/f1LUU4TNY2SlpIENGhyZME2SB7/Vgfh6mwKkvOmbglwXCI4SFuMiplfCMP2dgIOKpLoUptqIKoBD8XpCSKLQKdaUdP+Fbnq5kd4S1t9Y; - Expires=Tue, 11 Jan 2022 19:42:03 GMT; Path=/ - - AWSALBTGCORS=8IMm4mV6cwGy04pdAzPAiixr39zmXW85HPQWqDaBHXa6H+OYr9Q162foa48HfXm4G+7/f1LUU4TNY2SlpIENGhyZME2SB7/Vgfh6mwKkvOmbglwXCI4SFuMiplfCMP2dgIOKpLoUptqIKoBD8XpCSKLQKdaUdP+Fbnq5kd4S1t9Y; - Expires=Tue, 11 Jan 2022 19:42:03 GMT; Path=/; SameSite=None; Secure - - csrftoken=zTpGGn5RJfv9Q581OjWSTObM8DfOC9rOXtlhORt9drRgnv5A425PNqArlqvp1NTx; - expires=Tue, 03 Jan 2023 19:42:04 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=cq7suyy6sszylehwbdvw4qnplsjdto5d; expires=Tue, 18 Jan 2022 19:42:04 + - AWSALB=EOBOrC3n0VWWj7V6Z8z7V4BzEjwip7tJbuzW4W62sBCHoTJujJqG4vO51nnIResooHpwANczHYlD34+HB31QxDh25blDiPrfsP/jYFvoDwKgbnTijOKBDa1Kzahs; + Expires=Fri, 14 Oct 2022 15:27:16 GMT; Path=/ + - AWSALBCORS=EOBOrC3n0VWWj7V6Z8z7V4BzEjwip7tJbuzW4W62sBCHoTJujJqG4vO51nnIResooHpwANczHYlD34+HB31QxDh25blDiPrfsP/jYFvoDwKgbnTijOKBDa1Kzahs; + Expires=Fri, 14 Oct 2022 15:27:16 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=+Q/6DTjfwBB/2ko/C+hjAQ2H03qVePG4P5bqvNaXrIysqVVBPyObiAXVoEzVOZH9IsgPpadW1kYZc0+WsK6OpZ+BFCIipgsZSUy2JSogontXlbLk/qPwxoB+2p6+GzDj0U+zj6AZjgMkbJ+m4OetUcJkR3he/Ija3f4Id6Ez1f//; + Expires=Fri, 14 Oct 2022 15:27:16 GMT; Path=/ + - AWSALBTGCORS=+Q/6DTjfwBB/2ko/C+hjAQ2H03qVePG4P5bqvNaXrIysqVVBPyObiAXVoEzVOZH9IsgPpadW1kYZc0+WsK6OpZ+BFCIipgsZSUy2JSogontXlbLk/qPwxoB+2p6+GzDj0U+zj6AZjgMkbJ+m4OetUcJkR3he/Ija3f4Id6Ez1f//; + Expires=Fri, 14 Oct 2022 15:27:16 GMT; Path=/; SameSite=None; Secure + - csrftoken=DuVKV5XW6FPiCeCQ0269HT3dWWsFBHZrKMf8t7itqwc82UqaS96uTwvNjAkLKCNu; + expires=Fri, 06 Oct 2023 15:27:17 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=s4j19r5eqoh8d7wu9jb13xufur5phdak; expires=Fri, 21 Oct 2022 15:27:17 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/81f4295e-e1ed-49c9-a7ca-f98bb6b4886e/ + - https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/375b589f-698f-4b8a-9f5a-6bd7988c000e/ Vary: - Accept, Cookie, Origin Allow: @@ -518,11 +496,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/81f4295e-e1ed-49c9-a7ca-f98bb6b4886e/","id":"81f4295e-e1ed-49c9-a7ca-f98bb6b4886e","name":"int_param","description":"","secret":false,"type":"integer","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T19:42:04.434415Z","modified_at":"2022-01-04T19:42:04.434415Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 19:42:04 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/375b589f-698f-4b8a-9f5a-6bd7988c000e/","id":"375b589f-698f-4b8a-9f5a-6bd7988c000e","name":"int_param","description":"","secret":false,"type":"integer","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:27:17.522470Z","modified_at":"2022-10-07T15:27:17.522470Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:27:17 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/environments/ + uri: https://api.staging.cloudtruth.io/api/v1/environments/ body: encoding: US-ASCII string: '' @@ -530,7 +508,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -543,25 +521,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:42:05 GMT + - Fri, 07 Oct 2022 15:27:19 GMT Content-Type: - application/json Content-Length: - - '4139' + - '2085' Connection: - keep-alive Set-Cookie: - - AWSALB=/Yqk0kRj+j/092e8bu72D6Usb2pX+f3QiEnrWTVTJdIjkX+7a+ajBsfhSXSk9UPOvXtIeGCQWHJ3Ndq1Fd4r1BPFT2b1pq/0WSly6tDoNQYzaH8nqCpvIqrbOZgF; - Expires=Tue, 11 Jan 2022 19:42:04 GMT; Path=/ - - AWSALBCORS=/Yqk0kRj+j/092e8bu72D6Usb2pX+f3QiEnrWTVTJdIjkX+7a+ajBsfhSXSk9UPOvXtIeGCQWHJ3Ndq1Fd4r1BPFT2b1pq/0WSly6tDoNQYzaH8nqCpvIqrbOZgF; - Expires=Tue, 11 Jan 2022 19:42:04 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=R7DgGSD1TxCIFfKrR305lenNnDVQ4GC94XwcwWqEj88I/VL7nJIu4HipKvzvC/tbxGcRQR2lu9tDrVDUi+hsGqHm8CzUdqsx9U5Xr3GnhLdFk37HvbKk8uIB6dVSFHG4cQSGh2vDXbaezjSYqOfgGj8nxEJi3ekixCzPd9Ck2lqB; - Expires=Tue, 11 Jan 2022 19:42:04 GMT; Path=/ - - AWSALBTGCORS=R7DgGSD1TxCIFfKrR305lenNnDVQ4GC94XwcwWqEj88I/VL7nJIu4HipKvzvC/tbxGcRQR2lu9tDrVDUi+hsGqHm8CzUdqsx9U5Xr3GnhLdFk37HvbKk8uIB6dVSFHG4cQSGh2vDXbaezjSYqOfgGj8nxEJi3ekixCzPd9Ck2lqB; - Expires=Tue, 11 Jan 2022 19:42:04 GMT; Path=/; SameSite=None; Secure - - csrftoken=K64f48NSDWYIGwyj1WX9N2p328GQEpLwjUwZH84KwbMo7nRY1OSZrlzVMa8ln3Ci; - expires=Tue, 03 Jan 2023 19:42:05 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=i252j50kybey932g6yezcqcq9wch5yyd; expires=Tue, 18 Jan 2022 19:42:05 + - AWSALB=/g5oFDdrDa5pSLa1ZmfHmthPVoI8bUMxk2x53k/wFhlzBbdGPZPkk/Po6YWrsrBkhA3ts7S/o2/yF+ebPv2sCZo959wGk6yXPduSk7Cbyw5ZfOhJyE+xknpNen7i; + Expires=Fri, 14 Oct 2022 15:27:17 GMT; Path=/ + - AWSALBCORS=/g5oFDdrDa5pSLa1ZmfHmthPVoI8bUMxk2x53k/wFhlzBbdGPZPkk/Po6YWrsrBkhA3ts7S/o2/yF+ebPv2sCZo959wGk6yXPduSk7Cbyw5ZfOhJyE+xknpNen7i; + Expires=Fri, 14 Oct 2022 15:27:17 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=wfDOp1r7tOgMvRf86a9CAeaR/WQoXH+u28h5nJ4loOF8H8JMj6VbLsVc+JKHtqcC+Med+7mJQfoJDzYaF59V4hBNU2AY5QLGgUyQ9CBIEwZjZJi/ciHDuHOCb2/5QnQUV6TrnN9jRPgLzWkwzURvT8AQ+HhT279AIdGpayTBtaW4; + Expires=Fri, 14 Oct 2022 15:27:17 GMT; Path=/ + - AWSALBTGCORS=wfDOp1r7tOgMvRf86a9CAeaR/WQoXH+u28h5nJ4loOF8H8JMj6VbLsVc+JKHtqcC+Med+7mJQfoJDzYaF59V4hBNU2AY5QLGgUyQ9CBIEwZjZJi/ciHDuHOCb2/5QnQUV6TrnN9jRPgLzWkwzURvT8AQ+HhT279AIdGpayTBtaW4; + Expires=Fri, 14 Oct 2022 15:27:17 GMT; Path=/; SameSite=None; Secure + - csrftoken=bu2UjMscxVrqzkfLf5LPRcYqycCWaoP2JduPscpE9ZfgqjZ0dpftJB7eIwBnsKEe; + expires=Fri, 06 Oct 2023 15:27:19 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=2eo7dol4bqj53hj0g8te5oivbgvtuau1; expires=Fri, 21 Oct 2022 15:27:19 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -579,24 +557,23 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":9,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","id":"e8bc190d-0354-4e66-91c9-64501e501ec5","name":"default","description":"The - auto-generated default environment.","parent":null,"children":["https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/"],"created_at":"2021-07-20T18:14:09.023022Z","modified_at":"2022-01-04T19:41:07.743297Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","id":"c4de304d-5dd4-4a41-80ec-9a469f1aa4f5","name":"development","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/"],"created_at":"2021-07-20T18:14:09.035255Z","modified_at":"2022-01-04T19:34:27.489417Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/","id":"12b9c81b-9002-423b-9ca7-22cece646d07","name":"dev-matt","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","children":[],"created_at":"2021-07-21T19:53:37.534082Z","modified_at":"2021-07-26T22:01:23.472634Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","id":"2281d9da-8376-4f45-baf2-372a71260dfa","name":"europe","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T19:53:47.438517Z","modified_at":"2021-07-26T22:01:29.331661Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","id":"c99d6ab9-4674-4f76-bb43-da0b19124e18","name":"local","description":"for - local development","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T19:53:50.000541Z","modified_at":"2021-07-26T22:01:32.150839Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","id":"ef133a2e-3c9c-4229-a509-e56332baff40","name":"ops","description":"The - ops environment - infrastructure that acts as the entry point to the other - environment''s infrastructure","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T20:05:10.325110Z","modified_at":"2021-07-26T22:01:35.184068Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","id":"cde7cf9d-8bf2-46cb-9e97-dee9b99e4335","name":"production","description":"for - real","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/"],"created_at":"2021-07-20T18:14:09.058957Z","modified_at":"2021-10-26T18:14:38.859067Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/","id":"e4399ff4-a962-451b-adfb-7e504ad6bb6d","name":"staging","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-20T18:14:09.047049Z","modified_at":"2021-07-26T18:46:21.385162Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/","id":"3afc0523-4722-4fa1-aaea-5d49beaa284d","name":"usa","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T20:05:24.767679Z","modified_at":"2021-07-26T18:44:51.186840Z"}]}' - recorded_at: Tue, 04 Jan 2022 19:42:05 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","id":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","name":"default","description":"Default + environment, base for all environments.","parent":null,"children":["https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/"],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.112161Z","modified_at":"2022-06-02T17:13:09.641786Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","id":"8f2e37b9-b429-4987-bb85-abd24bd67274","name":"development","description":"Development + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.123839Z","modified_at":"2022-06-02T17:11:55.123839Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","id":"0663ac09-5883-452b-bc1a-00e3347fece5","name":"production","description":"Production + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.145580Z","modified_at":"2022-06-02T17:11:55.145580Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/","id":"fc970cc2-c24f-427d-9c7a-70acde9f1b64","name":"staging","description":"Staging + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.134547Z","modified_at":"2022-06-02T17:11:55.134547Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:27:19 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/d07d3f2b-38eb-4a3e-b730-4ed57fb3da54/values/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/d3f0165d-1038-4386-9a04-a99af55d2782/values/ body: encoding: UTF-8 - string: '{"environment":"e8bc190d-0354-4e66-91c9-64501e501ec5","external":false,"internal_value":"true"}' + string: '{"environment":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","external":false,"internal_value":"true"}' headers: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -609,30 +586,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:42:05 GMT + - Fri, 07 Oct 2022 15:27:20 GMT Content-Type: - application/json Content-Length: - - '923' + - '975' Connection: - keep-alive Set-Cookie: - - AWSALB=zU+AsNzj3afaSG5ruNkQPSxqUEwntS+AInErU0Ffz0S9dQN+LlGNmvrXXKHOLWNL+fUUUiTurmCD0SuEsLSxQbzVUP8OdqsCSVkmDPjlgFp/N+yu2pSgMlCvj70p; - Expires=Tue, 11 Jan 2022 19:42:05 GMT; Path=/ - - AWSALBCORS=zU+AsNzj3afaSG5ruNkQPSxqUEwntS+AInErU0Ffz0S9dQN+LlGNmvrXXKHOLWNL+fUUUiTurmCD0SuEsLSxQbzVUP8OdqsCSVkmDPjlgFp/N+yu2pSgMlCvj70p; - Expires=Tue, 11 Jan 2022 19:42:05 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=gnR8kzkkFMRUDs5z6zfJ/77zzqZV85ckuZ3Zg6QWHFKpJv5PQkZ0+rpVIbPp+lanKOs2WrW7evivbzv10tQywSKhMnlnZMucULYmGZ1Jg5XwIV8CwUkDK3DOdj/udC5YjCpfDzvsmocWScuTfx9u/5hrvNmnRbzxvIBKVaaSUdx9; - Expires=Tue, 11 Jan 2022 19:42:05 GMT; Path=/ - - AWSALBTGCORS=gnR8kzkkFMRUDs5z6zfJ/77zzqZV85ckuZ3Zg6QWHFKpJv5PQkZ0+rpVIbPp+lanKOs2WrW7evivbzv10tQywSKhMnlnZMucULYmGZ1Jg5XwIV8CwUkDK3DOdj/udC5YjCpfDzvsmocWScuTfx9u/5hrvNmnRbzxvIBKVaaSUdx9; - Expires=Tue, 11 Jan 2022 19:42:05 GMT; Path=/; SameSite=None; Secure - - csrftoken=z2MUfiDjhzuKILbwWUzTkJ31RYMshvsVvLssxa0gzQN8iaYIEGlQRzm5gyGq1xfS; - expires=Tue, 03 Jan 2023 19:42:05 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=u63y154sdo04qdq5q2bmhwuirqec22e6; expires=Tue, 18 Jan 2022 19:42:05 + - AWSALB=JNruDInhkVo9DRxTQCLyiFukktyPvwwJ+8AwnyslCNY2yPvwZGIC70Bo4XeujzODFMWvD3TWiPsCBtTfeuICluvIBeb3NnwMQhlc55CtBpjMfoPCSgi7eiS8PHwP; + Expires=Fri, 14 Oct 2022 15:27:19 GMT; Path=/ + - AWSALBCORS=JNruDInhkVo9DRxTQCLyiFukktyPvwwJ+8AwnyslCNY2yPvwZGIC70Bo4XeujzODFMWvD3TWiPsCBtTfeuICluvIBeb3NnwMQhlc55CtBpjMfoPCSgi7eiS8PHwP; + Expires=Fri, 14 Oct 2022 15:27:19 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=TWexk8jMo1z+Bf5DHTMuj/TdES0xMdZT7l7PGoRt/rCTmZExw6ME9j7U0Cq7hLxa/ibzewYVoCLKobcO6H8Pk/Kks6WIrvdzNqolbrQdWglKOA69XbjJAY+ZySEKSQLDrK0bnqlNNXxaF6EKmG1L599rCqXwllOIObuLniJ6wU1k; + Expires=Fri, 14 Oct 2022 15:27:19 GMT; Path=/ + - AWSALBTGCORS=TWexk8jMo1z+Bf5DHTMuj/TdES0xMdZT7l7PGoRt/rCTmZExw6ME9j7U0Cq7hLxa/ibzewYVoCLKobcO6H8Pk/Kks6WIrvdzNqolbrQdWglKOA69XbjJAY+ZySEKSQLDrK0bnqlNNXxaF6EKmG1L599rCqXwllOIObuLniJ6wU1k; + Expires=Fri, 14 Oct 2022 15:27:19 GMT; Path=/; SameSite=None; Secure + - csrftoken=8VXuPOe1OCDfpfL6xgAJdygFAh77JcagWB3LR3aDiSi8cKKe9nRo0EUcYzWi55xs; + expires=Fri, 06 Oct 2023 15:27:20 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=2exxychjqn8awlzvqcnh7ec46c4iz9s8; expires=Fri, 21 Oct 2022 15:27:20 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/d07d3f2b-38eb-4a3e-b730-4ed57fb3da54/values/d230f648-57cb-4876-a493-9130c5f7d044/ + - https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/d3f0165d-1038-4386-9a04-a99af55d2782/values/cdc609de-0e4f-4f1a-b52a-5ad21b4a4710/ Vary: - Accept, Cookie, Origin Allow: @@ -647,19 +624,19 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/d07d3f2b-38eb-4a3e-b730-4ed57fb3da54/values/d230f648-57cb-4876-a493-9130c5f7d044/","id":"d230f648-57cb-4876-a493-9130c5f7d044","environment":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","environment_name":"default","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/d07d3f2b-38eb-4a3e-b730-4ed57fb3da54/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"true","interpolated":false,"value":"true","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:42:05.804236Z","modified_at":"2022-01-04T19:42:05.804236Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"true"}' - recorded_at: Tue, 04 Jan 2022 19:42:05 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/d3f0165d-1038-4386-9a04-a99af55d2782/values/cdc609de-0e4f-4f1a-b52a-5ad21b4a4710/","id":"cdc609de-0e4f-4f1a-b52a-5ad21b4a4710","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/d3f0165d-1038-4386-9a04-a99af55d2782/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"true","interpolated":false,"value":"true","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:27:20.966955Z","modified_at":"2022-10-07T15:27:20.966955Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"true"}' + recorded_at: Fri, 07 Oct 2022 15:27:20 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/81f4295e-e1ed-49c9-a7ca-f98bb6b4886e/values/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/375b589f-698f-4b8a-9f5a-6bd7988c000e/values/ body: encoding: UTF-8 - string: '{"environment":"e8bc190d-0354-4e66-91c9-64501e501ec5","external":false,"internal_value":"3"}' + string: '{"environment":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","external":false,"internal_value":"3"}' headers: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -672,30 +649,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:42:06 GMT + - Fri, 07 Oct 2022 15:27:22 GMT Content-Type: - application/json Content-Length: - - '914' + - '966' Connection: - keep-alive Set-Cookie: - - AWSALB=H1NsSDl35/4O/XgDHNB5scL9TuHWsXP5tGCPuVQrEs2hBAceaU38DgOvAv18bY7VB0H093Ufo2L5F7y2Ln8E0dqqQ2SeMqgsmt+4oPAHHxXgTWWaA9SgpXiUhFzb; - Expires=Tue, 11 Jan 2022 19:42:06 GMT; Path=/ - - AWSALBCORS=H1NsSDl35/4O/XgDHNB5scL9TuHWsXP5tGCPuVQrEs2hBAceaU38DgOvAv18bY7VB0H093Ufo2L5F7y2Ln8E0dqqQ2SeMqgsmt+4oPAHHxXgTWWaA9SgpXiUhFzb; - Expires=Tue, 11 Jan 2022 19:42:06 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=0FkuKKTck9yw+ygEhiQxjb8yCsDgSVE0KpceiamRWUWsZAlZ+72V1F7UkdH9XUtMc/6EbEBFvfWt5BEHD29giTQ841OAyXoe+WwyxejSXwJQYAAmK1HEUb9ZLYkjO7ZbZFrRKVuXmAqrgu2D5GW+TC3E5fZtWZS1CfuivHpZJJ1K; - Expires=Tue, 11 Jan 2022 19:42:06 GMT; Path=/ - - AWSALBTGCORS=0FkuKKTck9yw+ygEhiQxjb8yCsDgSVE0KpceiamRWUWsZAlZ+72V1F7UkdH9XUtMc/6EbEBFvfWt5BEHD29giTQ841OAyXoe+WwyxejSXwJQYAAmK1HEUb9ZLYkjO7ZbZFrRKVuXmAqrgu2D5GW+TC3E5fZtWZS1CfuivHpZJJ1K; - Expires=Tue, 11 Jan 2022 19:42:06 GMT; Path=/; SameSite=None; Secure - - csrftoken=lxamd2yNczO9r5I8SIXvGcZGKMaqQDGqD3CD5DRrUu7zZeNItfeMU1mxiXYa00u6; - expires=Tue, 03 Jan 2023 19:42:06 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=dkhkkqygwie98kchg6k68o8zrur5z9gx; expires=Tue, 18 Jan 2022 19:42:06 + - AWSALB=xE1oSLw7DcTnn5B/7Y06qN+8SGmIIUQU295qq+VQ5Iyg2cXcpNxiTMztfzMnFt1g1kDqOEHg98ZUBhx1PyjGrWbhUKY5eNliTusM4FL8TTkaoimH8ylQuVQnuBfY; + Expires=Fri, 14 Oct 2022 15:27:21 GMT; Path=/ + - AWSALBCORS=xE1oSLw7DcTnn5B/7Y06qN+8SGmIIUQU295qq+VQ5Iyg2cXcpNxiTMztfzMnFt1g1kDqOEHg98ZUBhx1PyjGrWbhUKY5eNliTusM4FL8TTkaoimH8ylQuVQnuBfY; + Expires=Fri, 14 Oct 2022 15:27:21 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=YW6nDSo5WBlU2i1YzbmL1dkH5HIbNVaClB7C4SNFSyUYKl/lgwG+F7c5xyPk6ZEMwRwoagAyP6YyJxq86G+1ZismT21zstirJ9OES5F3k3FhFjHQAgg41hlgNveJxCmUQC1yloD/WZWn8uCmEcE0zWcZCtqGjfeAV+a87+LUQa5H; + Expires=Fri, 14 Oct 2022 15:27:21 GMT; Path=/ + - AWSALBTGCORS=YW6nDSo5WBlU2i1YzbmL1dkH5HIbNVaClB7C4SNFSyUYKl/lgwG+F7c5xyPk6ZEMwRwoagAyP6YyJxq86G+1ZismT21zstirJ9OES5F3k3FhFjHQAgg41hlgNveJxCmUQC1yloD/WZWn8uCmEcE0zWcZCtqGjfeAV+a87+LUQa5H; + Expires=Fri, 14 Oct 2022 15:27:21 GMT; Path=/; SameSite=None; Secure + - csrftoken=hSoQCR4Fgx8EeLqoyyKC9KZwhVaHZur4klUBvGB9gzELOJVEZMuLeHrLmxTtm8F2; + expires=Fri, 06 Oct 2023 15:27:22 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=mfwml9h7o2ueqofd6jaypp7u1awg0p3g; expires=Fri, 21 Oct 2022 15:27:22 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/81f4295e-e1ed-49c9-a7ca-f98bb6b4886e/values/c14b31d5-d79a-4b6b-949e-3560a4ae4402/ + - https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/375b589f-698f-4b8a-9f5a-6bd7988c000e/values/98c4c752-f0ec-42da-86ea-89056b46d7df/ Vary: - Accept, Cookie, Origin Allow: @@ -710,11 +687,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/81f4295e-e1ed-49c9-a7ca-f98bb6b4886e/values/c14b31d5-d79a-4b6b-949e-3560a4ae4402/","id":"c14b31d5-d79a-4b6b-949e-3560a4ae4402","environment":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","environment_name":"default","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/81f4295e-e1ed-49c9-a7ca-f98bb6b4886e/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"3","interpolated":false,"value":"3","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:42:06.604555Z","modified_at":"2022-01-04T19:42:06.604555Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"3"}' - recorded_at: Tue, 04 Jan 2022 19:42:06 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/375b589f-698f-4b8a-9f5a-6bd7988c000e/values/98c4c752-f0ec-42da-86ea-89056b46d7df/","id":"98c4c752-f0ec-42da-86ea-89056b46d7df","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/375b589f-698f-4b8a-9f5a-6bd7988c000e/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"3","interpolated":false,"value":"3","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:27:22.432242Z","modified_at":"2022-10-07T15:27:22.432242Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"3"}' + recorded_at: Fri, 07 Oct 2022 15:27:22 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/?environment=e8bc190d-0354-4e66-91c9-64501e501ec5 + uri: https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76 body: encoding: US-ASCII string: '' @@ -722,7 +699,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -735,25 +712,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:42:07 GMT + - Fri, 07 Oct 2022 15:27:23 GMT Content-Type: - application/json Content-Length: - - '4415' + - '4683' Connection: - keep-alive Set-Cookie: - - AWSALB=OzTSPVCIkFk1TcXGz5j4dLeJCLwG9LauWYHhu5u+jnHW3tA5Sdvxq96VlB8FtPWdTUzrz3z0gEjUdKJWZ0P5mLcg8UoQaBJd2anjN6m7Ubs6rqiufQC/3eSrGLYv; - Expires=Tue, 11 Jan 2022 19:42:06 GMT; Path=/ - - AWSALBCORS=OzTSPVCIkFk1TcXGz5j4dLeJCLwG9LauWYHhu5u+jnHW3tA5Sdvxq96VlB8FtPWdTUzrz3z0gEjUdKJWZ0P5mLcg8UoQaBJd2anjN6m7Ubs6rqiufQC/3eSrGLYv; - Expires=Tue, 11 Jan 2022 19:42:06 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=4S+I5Q87OXuz+aKKXsEOlfiLA67+m6NOMXVrcth7bqnITQQdhXceNLaFHQCUZhK45ZFsJl/4vfSXQCM2FXxJTdDkbNLlDW/tO8fU9hNIQQJ3JJb8jUkfapF+0nJas4G7oiZE0133QQGirM3xn+3z60Jvh2ex5QYt/uYIZJuI8i6i; - Expires=Tue, 11 Jan 2022 19:42:06 GMT; Path=/ - - AWSALBTGCORS=4S+I5Q87OXuz+aKKXsEOlfiLA67+m6NOMXVrcth7bqnITQQdhXceNLaFHQCUZhK45ZFsJl/4vfSXQCM2FXxJTdDkbNLlDW/tO8fU9hNIQQJ3JJb8jUkfapF+0nJas4G7oiZE0133QQGirM3xn+3z60Jvh2ex5QYt/uYIZJuI8i6i; - Expires=Tue, 11 Jan 2022 19:42:06 GMT; Path=/; SameSite=None; Secure - - csrftoken=1dvocFQ5hA2StwbMGqQglXGYEILLajyksF8YbiUhigOQH9uVGwzi60vkd3owbDfv; - expires=Tue, 03 Jan 2023 19:42:07 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=dm4ej0t3kby1qrlw16unzzxhq9zzlmkp; expires=Tue, 18 Jan 2022 19:42:07 + - AWSALB=yW3i4jfDPQiUTsBMPQYu+S5GIoihfCogU7aaUJ1JEM4UaRW+z7ug9ZKCysg8HzmnMlWnJWo6TWJ+/8iFUCK2/41ZDlFjSkxDa/1TQ0OgYLEt1eBdonfIJ84cRNTo; + Expires=Fri, 14 Oct 2022 15:27:22 GMT; Path=/ + - AWSALBCORS=yW3i4jfDPQiUTsBMPQYu+S5GIoihfCogU7aaUJ1JEM4UaRW+z7ug9ZKCysg8HzmnMlWnJWo6TWJ+/8iFUCK2/41ZDlFjSkxDa/1TQ0OgYLEt1eBdonfIJ84cRNTo; + Expires=Fri, 14 Oct 2022 15:27:22 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=OpEFljmnBqJaOBkz4ILbMAbisdBwMjh2GHZkWHZl0nbgIzq72LWtA19FqAzbUO+cNoTl2ta7e4AfG4CVz3xhveCTs6U6pf8UrC67E/I95NuykgnLNBdNdIretPtmDAkn4YYmIDgoDlrxVvbTekhxtCCb9i3XaSvi06pCqOnvEaRM; + Expires=Fri, 14 Oct 2022 15:27:22 GMT; Path=/ + - AWSALBTGCORS=OpEFljmnBqJaOBkz4ILbMAbisdBwMjh2GHZkWHZl0nbgIzq72LWtA19FqAzbUO+cNoTl2ta7e4AfG4CVz3xhveCTs6U6pf8UrC67E/I95NuykgnLNBdNdIretPtmDAkn4YYmIDgoDlrxVvbTekhxtCCb9i3XaSvi06pCqOnvEaRM; + Expires=Fri, 14 Oct 2022 15:27:22 GMT; Path=/; SameSite=None; Secure + - csrftoken=4PEnuxB4EUFe7wSPP3n0TyrTlsOt2numfLvzL4CCRBp1K1vNjwTQ8EUjNIYBjMAL; + expires=Fri, 06 Oct 2023 15:27:23 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=lgo28r8eauxy4awwba0vxlbavli5ajpo; expires=Fri, 21 Oct 2022 15:27:23 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -771,6 +748,6 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/d07d3f2b-38eb-4a3e-b730-4ed57fb3da54/","id":"d07d3f2b-38eb-4a3e-b730-4ed57fb3da54","name":"bool_param","description":"","secret":false,"type":"boolean","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":{"url":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/d07d3f2b-38eb-4a3e-b730-4ed57fb3da54/values/d230f648-57cb-4876-a493-9130c5f7d044/","id":"d230f648-57cb-4876-a493-9130c5f7d044","environment":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","environment_name":"default","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/d07d3f2b-38eb-4a3e-b730-4ed57fb3da54/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"true","interpolated":false,"value":"true","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:42:05.804236Z","modified_at":"2022-01-04T19:42:05.804236Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"true"}},"created_at":"2022-01-04T19:42:03.529718Z","modified_at":"2022-01-04T19:42:05.804236Z","templates":[]},{"url":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/81f4295e-e1ed-49c9-a7ca-f98bb6b4886e/","id":"81f4295e-e1ed-49c9-a7ca-f98bb6b4886e","name":"int_param","description":"","secret":false,"type":"integer","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":{"url":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/81f4295e-e1ed-49c9-a7ca-f98bb6b4886e/values/c14b31d5-d79a-4b6b-949e-3560a4ae4402/","id":"c14b31d5-d79a-4b6b-949e-3560a4ae4402","environment":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","environment_name":"default","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/81f4295e-e1ed-49c9-a7ca-f98bb6b4886e/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"3","interpolated":false,"value":"3","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:42:06.604555Z","modified_at":"2022-01-04T19:42:06.604555Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"3"}},"created_at":"2022-01-04T19:42:04.434415Z","modified_at":"2022-01-04T19:42:06.604555Z","templates":[]},{"url":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/7e39febc-4946-4e74-bd92-d3ec6d85bcde/","id":"7e39febc-4946-4e74-bd92-d3ec6d85bcde","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null},"created_at":"2022-01-04T19:42:02.325251Z","modified_at":"2022-01-04T19:42:02.325251Z","templates":[]},{"url":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/parameters/ea286016-101f-4d51-baab-b3c998dd0a08/","id":"ea286016-101f-4d51-baab-b3c998dd0a08","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/ccc6d900-c00d-45e0-acc6-2bdd5cb6ffe6/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null},"created_at":"2022-01-04T19:42:02.952085Z","modified_at":"2022-01-04T19:42:02.952085Z","templates":[]}]}' - recorded_at: Tue, 04 Jan 2022 19:42:07 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/d3f0165d-1038-4386-9a04-a99af55d2782/","id":"d3f0165d-1038-4386-9a04-a99af55d2782","name":"bool_param","description":"","secret":false,"type":"boolean","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":{"url":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/d3f0165d-1038-4386-9a04-a99af55d2782/values/cdc609de-0e4f-4f1a-b52a-5ad21b4a4710/","id":"cdc609de-0e4f-4f1a-b52a-5ad21b4a4710","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/d3f0165d-1038-4386-9a04-a99af55d2782/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"true","interpolated":false,"value":"true","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:27:20.966955Z","modified_at":"2022-10-07T15:27:20.966955Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"true"}},"overrides":null,"created_at":"2022-10-07T15:27:16.020151Z","modified_at":"2022-10-07T15:27:16.020151Z","templates":[]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/375b589f-698f-4b8a-9f5a-6bd7988c000e/","id":"375b589f-698f-4b8a-9f5a-6bd7988c000e","name":"int_param","description":"","secret":false,"type":"integer","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":{"url":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/375b589f-698f-4b8a-9f5a-6bd7988c000e/values/98c4c752-f0ec-42da-86ea-89056b46d7df/","id":"98c4c752-f0ec-42da-86ea-89056b46d7df","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/375b589f-698f-4b8a-9f5a-6bd7988c000e/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"3","interpolated":false,"value":"3","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:27:22.432242Z","modified_at":"2022-10-07T15:27:22.432242Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"3"}},"overrides":null,"created_at":"2022-10-07T15:27:17.522470Z","modified_at":"2022-10-07T15:27:17.522470Z","templates":[]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/66f9aed7-d7b7-4e4b-b99e-c4aa8897aacc/","id":"66f9aed7-d7b7-4e4b-b99e-c4aa8897aacc","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null},"overrides":null,"created_at":"2022-10-07T15:27:12.325244Z","modified_at":"2022-10-07T15:27:12.325244Z","templates":[]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/parameters/ea7b1bb1-bce9-46c9-9bdf-9a5d75aed911/","id":"ea7b1bb1-bce9-46c9-9bdf-9a5d75aed911","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null},"overrides":null,"created_at":"2022-10-07T15:27:14.176433Z","modified_at":"2022-10-07T15:27:14.176433Z","templates":[]}]}' + recorded_at: Fri, 07 Oct 2022 15:27:23 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/uses_environment_to_get_values.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/uses_environment_to_get_values.yml index 9b94098..d8a7b1d 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/uses_environment_to_get_values.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/uses_environment_to_get_values.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -10,7 +10,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -23,25 +23,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:34:21 GMT + - Fri, 07 Oct 2022 15:30:33 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=KVGk/Be5ykyULU5ke9yBhRbb2TZGuVQq3da49RaDv9YJQpfHkT8Qv8jn7RfnuViLntDrRlox8SLp2zdst5wrVuMok9cferShZKP9i/U00Qanp5wm2mEJRs1nU+2C; - Expires=Tue, 11 Jan 2022 19:34:20 GMT; Path=/ - - AWSALBCORS=KVGk/Be5ykyULU5ke9yBhRbb2TZGuVQq3da49RaDv9YJQpfHkT8Qv8jn7RfnuViLntDrRlox8SLp2zdst5wrVuMok9cferShZKP9i/U00Qanp5wm2mEJRs1nU+2C; - Expires=Tue, 11 Jan 2022 19:34:20 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=DY0drR+hkzC5ML84m4eD50ygGmT/K/OT9zkFT3P52VDWuNW3HkahytsT2SbfNTK5yz5g2drh4x/g9udmaApUZ6D6Hml9eAtimN8NB7AUX/BmiiC5Geyo63ZLsli70DI3PYAxOraDejtvsmy6Kt4xGRDjZxpDHsFbAt3aJ/bVWhGU; - Expires=Tue, 11 Jan 2022 19:34:20 GMT; Path=/ - - AWSALBTGCORS=DY0drR+hkzC5ML84m4eD50ygGmT/K/OT9zkFT3P52VDWuNW3HkahytsT2SbfNTK5yz5g2drh4x/g9udmaApUZ6D6Hml9eAtimN8NB7AUX/BmiiC5Geyo63ZLsli70DI3PYAxOraDejtvsmy6Kt4xGRDjZxpDHsFbAt3aJ/bVWhGU; - Expires=Tue, 11 Jan 2022 19:34:20 GMT; Path=/; SameSite=None; Secure - - csrftoken=YSwH2pCWiD6sxO18Su0zAmY29tiQBaFQlKBzCAfcXSmwynu9150w2bq96f0sGtm1; - expires=Tue, 03 Jan 2023 19:34:21 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=bc3krtjcyphwjft3m45c634s7s9nmp2u; expires=Tue, 18 Jan 2022 19:34:21 + - AWSALB=2dVUp2Mad/FB4edzNnqlCJhvnAZEj0ReK44ZuT0koHRcZj5dpEx5JVd9eYzj9MCOrS6GLyc3IJ/QGw3X7qRmaQYN94TsyIHHWW2bktMQSpbJtkPiDMj1HWV9d6Rw; + Expires=Fri, 14 Oct 2022 15:30:32 GMT; Path=/ + - AWSALBCORS=2dVUp2Mad/FB4edzNnqlCJhvnAZEj0ReK44ZuT0koHRcZj5dpEx5JVd9eYzj9MCOrS6GLyc3IJ/QGw3X7qRmaQYN94TsyIHHWW2bktMQSpbJtkPiDMj1HWV9d6Rw; + Expires=Fri, 14 Oct 2022 15:30:32 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=VA2tzvXg4vcVybtBUkxjpji30C/7J+NDx+5eJauL3f7z/px29AL4NtUAZQN7MjZeZEq7ABWmPHE+bPZolgaNHIXrhApYUI8CWdL3WINEjMFkCSDHPnbwi5fMVB3JuKGxpFGxPjDOdibsJ+KLTuwEmSa/8acIaGAJ3bvjMsYsvShs; + Expires=Fri, 14 Oct 2022 15:30:32 GMT; Path=/ + - AWSALBTGCORS=VA2tzvXg4vcVybtBUkxjpji30C/7J+NDx+5eJauL3f7z/px29AL4NtUAZQN7MjZeZEq7ABWmPHE+bPZolgaNHIXrhApYUI8CWdL3WINEjMFkCSDHPnbwi5fMVB3JuKGxpFGxPjDOdibsJ+KLTuwEmSa/8acIaGAJ3bvjMsYsvShs; + Expires=Fri, 14 Oct 2022 15:30:32 GMT; Path=/; SameSite=None; Secure + - csrftoken=WHdFT5Jh3ydMR8WAY2mhXRKEMAWQsdCMi8LJDDseXmc9SOeznzfxAiOdN28Nlo4L; + expires=Fri, 06 Oct 2023 15:30:33 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=nd2dhzc2oqu5vauehv3bxx0c4hhpp8o5; expires=Fri, 21 Oct 2022 15:30:33 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -59,23 +59,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/","id":"a3868356-da3a-4b8b-b106-e0a275a5de73","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T19:34:15.147975Z","modified_at":"2022-01-04T19:34:19.433012Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 19:34:21 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0950deb9-ced5-49dd-89e5-83d62929bbf3/","id":"0950deb9-ced5-49dd-89e5-83d62929bbf3","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:28:50.161253Z","modified_at":"2022-10-07T15:28:50.161253Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:30:33 GMT - request: method: delete - uri: https://api.cloudtruth.io/api/v1/projects/a3868356-da3a-4b8b-b106-e0a275a5de73/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/0950deb9-ced5-49dd-89e5-83d62929bbf3/ body: encoding: US-ASCII string: '' @@ -83,7 +72,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Authorization: - Api-Key Accept-Encoding: @@ -96,23 +85,23 @@ http_interactions: message: No Content headers: Date: - - Tue, 04 Jan 2022 19:34:21 GMT + - Fri, 07 Oct 2022 15:30:35 GMT Content-Length: - '0' Connection: - keep-alive Set-Cookie: - - AWSALB=xgUkKW9LyPjhVg2ot/E4A/b9n7ifxcxUGp2fKi7d5Rv/drJg5CkX3vxJH9fxYxpEOnFtxXSUJ0E2uWCRPvJyjVlkZ3zkIO7+3gjitJQ5dd+4/pmN6biL/klRahS8; - Expires=Tue, 11 Jan 2022 19:34:21 GMT; Path=/ - - AWSALBCORS=xgUkKW9LyPjhVg2ot/E4A/b9n7ifxcxUGp2fKi7d5Rv/drJg5CkX3vxJH9fxYxpEOnFtxXSUJ0E2uWCRPvJyjVlkZ3zkIO7+3gjitJQ5dd+4/pmN6biL/klRahS8; - Expires=Tue, 11 Jan 2022 19:34:21 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=S/7RiEzCteVT5oWBuGnhhB5lCuGh72Ny+/kSGEliTtKhV785y13VnEBgHnRJvSQdtJsH7GI++jXSjY0rZi8aeYoiuCStZxefIi5QpaidSGo9xO9TBkk5cG7wotougTSfYI+P21XEOvWa3HINuq14ZdWELEaktW93j0syIG44raKK; - Expires=Tue, 11 Jan 2022 19:34:21 GMT; Path=/ - - AWSALBTGCORS=S/7RiEzCteVT5oWBuGnhhB5lCuGh72Ny+/kSGEliTtKhV785y13VnEBgHnRJvSQdtJsH7GI++jXSjY0rZi8aeYoiuCStZxefIi5QpaidSGo9xO9TBkk5cG7wotougTSfYI+P21XEOvWa3HINuq14ZdWELEaktW93j0syIG44raKK; - Expires=Tue, 11 Jan 2022 19:34:21 GMT; Path=/; SameSite=None; Secure - - csrftoken=8G8PtwUcZsUTma0OmNBGqvLrj3I0ubczkioKMu6E7i1FW4kGeI58Gbde4eIXSyR7; - expires=Tue, 03 Jan 2023 19:34:21 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=dp27ae8p5topuiwnilqxw8epei6cqfch; expires=Tue, 18 Jan 2022 19:34:21 + - AWSALB=3nVpaRbLP146fGFqjny4ynj8PCiOkjrtaaYs9iyim10xxJ1sPrcZxHL+KZlyGDptRZXlVPgOKjkZ/vbeTrBNavjp34oJgVONdOdrhr8f56pzaQX5i90AjFccAxC3; + Expires=Fri, 14 Oct 2022 15:30:33 GMT; Path=/ + - AWSALBCORS=3nVpaRbLP146fGFqjny4ynj8PCiOkjrtaaYs9iyim10xxJ1sPrcZxHL+KZlyGDptRZXlVPgOKjkZ/vbeTrBNavjp34oJgVONdOdrhr8f56pzaQX5i90AjFccAxC3; + Expires=Fri, 14 Oct 2022 15:30:33 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=ac19mKZINK1UgeMrfeA/Zr6dpUkAOOy9YQh+Cf+e3+Z9rbhvNzuirUCGnzKvonwNp6/tb8qZl5JGP1fXUUwB38bC4TdbZhP5CshT3r5JWToP9SoY8ivl2yAOgdLC2ZCrgAbssGWtsjbilGqQVoiwRR0Qfc0S9ZBfdwC2dBUFANnY; + Expires=Fri, 14 Oct 2022 15:30:33 GMT; Path=/ + - AWSALBTGCORS=ac19mKZINK1UgeMrfeA/Zr6dpUkAOOy9YQh+Cf+e3+Z9rbhvNzuirUCGnzKvonwNp6/tb8qZl5JGP1fXUUwB38bC4TdbZhP5CshT3r5JWToP9SoY8ivl2yAOgdLC2ZCrgAbssGWtsjbilGqQVoiwRR0Qfc0S9ZBfdwC2dBUFANnY; + Expires=Fri, 14 Oct 2022 15:30:33 GMT; Path=/; SameSite=None; Secure + - csrftoken=LvOcZ0M2CkMTQNvSeyEidM0AKyQJwmPuALH7MBVvC65H9yzbaM7IOfNCkpwK9CqN; + expires=Fri, 06 Oct 2023 15:30:35 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=05z1yvamngd5eiq0a1n8ej4efw054syi; expires=Fri, 21 Oct 2022 15:30:35 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -131,10 +120,10 @@ http_interactions: body: encoding: UTF-8 string: '' - recorded_at: Tue, 04 Jan 2022 19:34:21 GMT + recorded_at: Fri, 07 Oct 2022 15:30:35 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: UTF-8 string: '{"name":"TestProject"}' @@ -142,7 +131,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -155,30 +144,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:34:22 GMT + - Fri, 07 Oct 2022 15:30:36 GMT Content-Type: - application/json Content-Length: - - '304' + - '365' Connection: - keep-alive Set-Cookie: - - AWSALB=00wu03a/m8ViSxDkQAPATu3h2f79dHvYxHPAEFvlfnmi6Nn47yaeLCgl8gNne4BYoYAf/+aRTymkUgzrLPuosRQhO3BA9z1SOlbBSM5GqrTRtR2oMxLYP+Qxk3MN; - Expires=Tue, 11 Jan 2022 19:34:21 GMT; Path=/ - - AWSALBCORS=00wu03a/m8ViSxDkQAPATu3h2f79dHvYxHPAEFvlfnmi6Nn47yaeLCgl8gNne4BYoYAf/+aRTymkUgzrLPuosRQhO3BA9z1SOlbBSM5GqrTRtR2oMxLYP+Qxk3MN; - Expires=Tue, 11 Jan 2022 19:34:21 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=5OqTg/40ogGQ+Rcv+TMeiNCYSQ9ZacKt4hlKXQuk/9ibkKhwz9VR0KgMfFQlmcPIHwZ9wa+KhPcTdd57rXIqEQ3B23L9mGeul4stKOsUwAY2fB/rVdJYLQYGNsWCF6d/joTf9ljRZVmSwxPZkbkRViqMZX7Pt8spRY1UL85fsjFa; - Expires=Tue, 11 Jan 2022 19:34:21 GMT; Path=/ - - AWSALBTGCORS=5OqTg/40ogGQ+Rcv+TMeiNCYSQ9ZacKt4hlKXQuk/9ibkKhwz9VR0KgMfFQlmcPIHwZ9wa+KhPcTdd57rXIqEQ3B23L9mGeul4stKOsUwAY2fB/rVdJYLQYGNsWCF6d/joTf9ljRZVmSwxPZkbkRViqMZX7Pt8spRY1UL85fsjFa; - Expires=Tue, 11 Jan 2022 19:34:21 GMT; Path=/; SameSite=None; Secure - - csrftoken=0MFy8QGQmmzL6ptFYZJoVj4pZ54Ih9yysOEryAFwP16PN6Bv0KigmSx4xnMHVliw; - expires=Tue, 03 Jan 2023 19:34:22 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=kue9yjuv4nzh5prsz1hwunqe4asbiycz; expires=Tue, 18 Jan 2022 19:34:22 + - AWSALB=6lsTwNlAeo8olRJmZLKdgOy/RnSx6e5Pw5GUtrZeG+KL4ykVnX7sjmaQTDfBejt92EuAQ9OYcLlbxOh+jLLgkp8JXta8LZd2JIS84/K8vOjFrjg/0egOXepfLa0y; + Expires=Fri, 14 Oct 2022 15:30:36 GMT; Path=/ + - AWSALBCORS=6lsTwNlAeo8olRJmZLKdgOy/RnSx6e5Pw5GUtrZeG+KL4ykVnX7sjmaQTDfBejt92EuAQ9OYcLlbxOh+jLLgkp8JXta8LZd2JIS84/K8vOjFrjg/0egOXepfLa0y; + Expires=Fri, 14 Oct 2022 15:30:36 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=m0leZJHBj1zgqdXfKou8JcRfM2yXAB5nqF6iaIj/FvzOKRc1bCCjpY9TrcI640WOCkj6HqsQXr+iMPoYUs9vquh0z1MKRYTO2508jgYNEe6H/MAik2a9HZLoJ1nqzrlcvYUyB4+hT/CJLsu0gLQido7Bfa9Qc36BijkhBhxVbuEW; + Expires=Fri, 14 Oct 2022 15:30:36 GMT; Path=/ + - AWSALBTGCORS=m0leZJHBj1zgqdXfKou8JcRfM2yXAB5nqF6iaIj/FvzOKRc1bCCjpY9TrcI640WOCkj6HqsQXr+iMPoYUs9vquh0z1MKRYTO2508jgYNEe6H/MAik2a9HZLoJ1nqzrlcvYUyB4+hT/CJLsu0gLQido7Bfa9Qc36BijkhBhxVbuEW; + Expires=Fri, 14 Oct 2022 15:30:36 GMT; Path=/; SameSite=None; Secure + - csrftoken=ibIEXod5WiClYmsEwwdUXyv6iYge5J3QkECo60hT7slFDxpOh74E7hecu74YZorw; + expires=Fri, 06 Oct 2023 15:30:36 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=qp7x2f0eoku0fhs8jrc3fdbym8xgnp5w; expires=Fri, 21 Oct 2022 15:30:36 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/ + - https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/ Vary: - Accept, Cookie, Origin Allow: @@ -193,11 +182,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/","id":"b6a17501-3398-40fe-8ac0-57ad5196e8ac","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T19:34:22.473542Z","modified_at":"2022-01-04T19:34:22.473542Z"}' - recorded_at: Tue, 04 Jan 2022 19:34:22 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/","id":"25d1e833-a351-458e-ab6f-cb09ae6bc20d","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:30:36.977702Z","modified_at":"2022-10-07T15:30:36.977702Z"}' + recorded_at: Fri, 07 Oct 2022 15:30:36 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -205,7 +194,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -218,25 +207,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:34:23 GMT + - Fri, 07 Oct 2022 15:30:38 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=DdW4oOp+1G8QLUnDZ8cXIa7cFidqUxkxynbnu5NoyoTGNpdfJuw280QD4EgoiLbtUsM5YS/t1dC3M2EJcB9xtdwxM4v3/ypTSCbUpXU3wH+f9qHCZ9Bqla6ruXFQ; - Expires=Tue, 11 Jan 2022 19:34:22 GMT; Path=/ - - AWSALBCORS=DdW4oOp+1G8QLUnDZ8cXIa7cFidqUxkxynbnu5NoyoTGNpdfJuw280QD4EgoiLbtUsM5YS/t1dC3M2EJcB9xtdwxM4v3/ypTSCbUpXU3wH+f9qHCZ9Bqla6ruXFQ; - Expires=Tue, 11 Jan 2022 19:34:22 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=EZpjuyUhoXXT+jACgOEj5cB8/d8UbYWWhSo8Pks6uH1WnK36fAYUsqZMO7yalBNih/YIoQo48I2089tKQXMEQYTSCNedrxgU+uimpy/SmhPVPBcvWLxaoMjYxj40w9kQorhv3bEWO4W4d1VyWmUpVR9TJmhjV4PCPcJixO5YPxKV; - Expires=Tue, 11 Jan 2022 19:34:22 GMT; Path=/ - - AWSALBTGCORS=EZpjuyUhoXXT+jACgOEj5cB8/d8UbYWWhSo8Pks6uH1WnK36fAYUsqZMO7yalBNih/YIoQo48I2089tKQXMEQYTSCNedrxgU+uimpy/SmhPVPBcvWLxaoMjYxj40w9kQorhv3bEWO4W4d1VyWmUpVR9TJmhjV4PCPcJixO5YPxKV; - Expires=Tue, 11 Jan 2022 19:34:22 GMT; Path=/; SameSite=None; Secure - - csrftoken=BBSB706Av3AaoaoqvKXU60K3wjnh4LHLvgLkmNkdSVo7cFJ6deZXDctmxSbyj7au; - expires=Tue, 03 Jan 2023 19:34:23 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=h8t3y6a84sx7kh7nrss2g681a423bkt8; expires=Tue, 18 Jan 2022 19:34:23 + - AWSALB=DWKhHCT9CFL3SdS3cGJU11UFachxNCTGBkMGB7/eWq8s0U+zt4zJ8kEnzEnPTyCxzhM21zOsND311WgL3k20i4/0oLY8MUgjyZoe93KqHnDa8RTPuBJ8cjaXqluE; + Expires=Fri, 14 Oct 2022 15:30:37 GMT; Path=/ + - AWSALBCORS=DWKhHCT9CFL3SdS3cGJU11UFachxNCTGBkMGB7/eWq8s0U+zt4zJ8kEnzEnPTyCxzhM21zOsND311WgL3k20i4/0oLY8MUgjyZoe93KqHnDa8RTPuBJ8cjaXqluE; + Expires=Fri, 14 Oct 2022 15:30:37 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=sEUYMa2+jfqfKsoV0XutvH87J8LO1hwUyyFyO//Y1MGblTC9QEfNiuSSij6G6JCXsAeRrj8g2Tpl18UH8yypVIK215Wnpfl+qi7q/zd65BW4H7gIdCUpGeva6F0LF3RXcHP20HDniWfkOEdCpFcHXQlMJgZFthLP9KLDmbWWpuml; + Expires=Fri, 14 Oct 2022 15:30:37 GMT; Path=/ + - AWSALBTGCORS=sEUYMa2+jfqfKsoV0XutvH87J8LO1hwUyyFyO//Y1MGblTC9QEfNiuSSij6G6JCXsAeRrj8g2Tpl18UH8yypVIK215Wnpfl+qi7q/zd65BW4H7gIdCUpGeva6F0LF3RXcHP20HDniWfkOEdCpFcHXQlMJgZFthLP9KLDmbWWpuml; + Expires=Fri, 14 Oct 2022 15:30:37 GMT; Path=/; SameSite=None; Secure + - csrftoken=TYoh1TQcvuMxYziZ1EETr1aEtwSqFOf2rUUhkIjOT4Pa8tqiTLya6pDc4Apmf6W0; + expires=Fri, 06 Oct 2023 15:30:38 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=3w5rqrl0a03uip64k2vynnbd62utxhpg; expires=Fri, 21 Oct 2022 15:30:38 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -254,23 +243,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/","id":"b6a17501-3398-40fe-8ac0-57ad5196e8ac","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T19:34:22.473542Z","modified_at":"2022-01-04T19:34:22.473542Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 19:34:23 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/","id":"25d1e833-a351-458e-ab6f-cb09ae6bc20d","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:30:36.977702Z","modified_at":"2022-10-07T15:30:36.977702Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:30:38 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/ body: encoding: UTF-8 string: '{"name":"one","type":"string"}' @@ -278,7 +256,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -291,30 +269,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:34:23 GMT + - Fri, 07 Oct 2022 15:30:39 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=78T/Ajyphyg5woD7WOW5WWS8Uk4WE/WkHb1kRV9F41qC1kQlkNsp6mtSchlVtnVQPLcRhJ/9CCvjS9YOC5wsDAOJmYyBRt0wulXEFM/k931LE4yt07scXmVq2m5o; - Expires=Tue, 11 Jan 2022 19:34:23 GMT; Path=/ - - AWSALBCORS=78T/Ajyphyg5woD7WOW5WWS8Uk4WE/WkHb1kRV9F41qC1kQlkNsp6mtSchlVtnVQPLcRhJ/9CCvjS9YOC5wsDAOJmYyBRt0wulXEFM/k931LE4yt07scXmVq2m5o; - Expires=Tue, 11 Jan 2022 19:34:23 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=DJ/42YAG8p9mxGNOCpP81XkGQvSk0TdlQExGr8MhhwIDoxNhPBMh+/syilogNf2tON40EhTENAPkVMVpwF9BNnD4ZqFSH9M2+oIZGG4gd1+E7zfN03G6VRIqZZnjFFSgXGf5ev+oxkLf3oUlju73TJmKImVW0LWDCXKiO/pNpSYT; - Expires=Tue, 11 Jan 2022 19:34:23 GMT; Path=/ - - AWSALBTGCORS=DJ/42YAG8p9mxGNOCpP81XkGQvSk0TdlQExGr8MhhwIDoxNhPBMh+/syilogNf2tON40EhTENAPkVMVpwF9BNnD4ZqFSH9M2+oIZGG4gd1+E7zfN03G6VRIqZZnjFFSgXGf5ev+oxkLf3oUlju73TJmKImVW0LWDCXKiO/pNpSYT; - Expires=Tue, 11 Jan 2022 19:34:23 GMT; Path=/; SameSite=None; Secure - - csrftoken=eAnEdhv5zdwRsiyziOE9uR0oGBLl5hZr9VSEUapfuPooMh0j61DdsBkuJq05veNM; - expires=Tue, 03 Jan 2023 19:34:23 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=6a7dzkptrz0w7ivcsho8l78uygb2re00; expires=Tue, 18 Jan 2022 19:34:23 + - AWSALB=974yr0fOSavZTut9wrMYllG3XyANsb3PWyfdtFU6g+PVPji+PdUWP2mCkd9ZgVa6nHCU1v3FzMP5am9ZmUn+JCt6ZhlYSbDRC94Zsww/19ZO51Y7HwbHv+4zIvfc; + Expires=Fri, 14 Oct 2022 15:30:38 GMT; Path=/ + - AWSALBCORS=974yr0fOSavZTut9wrMYllG3XyANsb3PWyfdtFU6g+PVPji+PdUWP2mCkd9ZgVa6nHCU1v3FzMP5am9ZmUn+JCt6ZhlYSbDRC94Zsww/19ZO51Y7HwbHv+4zIvfc; + Expires=Fri, 14 Oct 2022 15:30:38 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=4znxt6+Ji6SIf6Yu6HWOj5DCCRIUyOoaglD18CWUBlgNZMQ3YBe8u9AF1LvRY69oQyJkz9EHpRIYbbNZOpR5Ygk5ym/A1Qz6fPWlooA5NThxIHMNaM+qYGNTV8MSmO9uiAtwFkJG3+j/nO8vTkiCLCxdIUpp1vAZHrWDLdVC4mwl; + Expires=Fri, 14 Oct 2022 15:30:38 GMT; Path=/ + - AWSALBTGCORS=4znxt6+Ji6SIf6Yu6HWOj5DCCRIUyOoaglD18CWUBlgNZMQ3YBe8u9AF1LvRY69oQyJkz9EHpRIYbbNZOpR5Ygk5ym/A1Qz6fPWlooA5NThxIHMNaM+qYGNTV8MSmO9uiAtwFkJG3+j/nO8vTkiCLCxdIUpp1vAZHrWDLdVC4mwl; + Expires=Fri, 14 Oct 2022 15:30:38 GMT; Path=/; SameSite=None; Secure + - csrftoken=mq9XumT4E4qujfBWhLPURH0fooGEpG2fTjP0ericiT78idsam8P8JT34dA8tj7ol; + expires=Fri, 06 Oct 2023 15:30:39 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=zoio0psuzl0pz6buz3cxvj5siculmycr; expires=Fri, 21 Oct 2022 15:30:39 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/a240fdae-5e51-4ce3-8513-dc97e047c396/ + - https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/17545473-ccca-4a47-ab40-7e6ad5c381b9/ Vary: - Accept, Cookie, Origin Allow: @@ -329,11 +307,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/a240fdae-5e51-4ce3-8513-dc97e047c396/","id":"a240fdae-5e51-4ce3-8513-dc97e047c396","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T19:34:23.732684Z","modified_at":"2022-01-04T19:34:23.732684Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 19:34:23 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/17545473-ccca-4a47-ab40-7e6ad5c381b9/","id":"17545473-ccca-4a47-ab40-7e6ad5c381b9","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:30:39.690561Z","modified_at":"2022-10-07T15:30:39.690561Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:30:39 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/ body: encoding: UTF-8 string: '{"name":"two","type":"string"}' @@ -341,7 +319,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -354,30 +332,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:34:24 GMT + - Fri, 07 Oct 2022 15:30:41 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=BJIUvAhBI50q34qZPG06ALz9WX79pOy8ZJ+O3BOEU8/abYZxVrGt2acMxpINN3wSIleheh1q7HdYj35Cm2bs+yesArssY0MjG9D9BmkAB60bUXvUH8KmFj6jqLl9; - Expires=Tue, 11 Jan 2022 19:34:24 GMT; Path=/ - - AWSALBCORS=BJIUvAhBI50q34qZPG06ALz9WX79pOy8ZJ+O3BOEU8/abYZxVrGt2acMxpINN3wSIleheh1q7HdYj35Cm2bs+yesArssY0MjG9D9BmkAB60bUXvUH8KmFj6jqLl9; - Expires=Tue, 11 Jan 2022 19:34:24 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=t01eOVyalTEg8xc9/YSwsw0q1BmgscuRmmASBzUFBzYlDZF3hBFDVzXAK9QXGh1MZQWrLb9wOOG2IulYBSke5EGSKNkJDzlVlXtOjebhmNs86iRxKskWZ0FRI1vcSy4U+zEWjYRHEOZl8UuEVS8jlqobmHHoHz2YwqCw9XTPqlNL; - Expires=Tue, 11 Jan 2022 19:34:24 GMT; Path=/ - - AWSALBTGCORS=t01eOVyalTEg8xc9/YSwsw0q1BmgscuRmmASBzUFBzYlDZF3hBFDVzXAK9QXGh1MZQWrLb9wOOG2IulYBSke5EGSKNkJDzlVlXtOjebhmNs86iRxKskWZ0FRI1vcSy4U+zEWjYRHEOZl8UuEVS8jlqobmHHoHz2YwqCw9XTPqlNL; - Expires=Tue, 11 Jan 2022 19:34:24 GMT; Path=/; SameSite=None; Secure - - csrftoken=uzjKXdSajM01Mpd0RRZ4zuGPJ7RTSQtni8fdQ5tlxB3Z1rBmew42GdkRC9JHIze0; - expires=Tue, 03 Jan 2023 19:34:24 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=o7298kheyni6w290x8ear7rxdizvqe7e; expires=Tue, 18 Jan 2022 19:34:24 + - AWSALB=LX7v0c9h+7EMMDO4L5pWmYGv9dQYv/IN/AtF3sFbX/wSVWRaZokRXvkwCJFkwlwfAC2xYpnjIMhVk1mql19RvsfpXoBYUvsSZq/eOBFyQSFmEqUUpyRQnPBWRGpG; + Expires=Fri, 14 Oct 2022 15:30:39 GMT; Path=/ + - AWSALBCORS=LX7v0c9h+7EMMDO4L5pWmYGv9dQYv/IN/AtF3sFbX/wSVWRaZokRXvkwCJFkwlwfAC2xYpnjIMhVk1mql19RvsfpXoBYUvsSZq/eOBFyQSFmEqUUpyRQnPBWRGpG; + Expires=Fri, 14 Oct 2022 15:30:39 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=Yf6o1LLb/ck6fsIs1L2nyWzpYJRMOzgHjmHvhACXABdb9YmXUD0vPwc0XaOtcBPZS8wNODo15EPgi9l9NqIM4Jsxr3l0+7OapldERb4lhb4v8rl4ToY7NYGVwIA+a93fcy/0mIwEztcidCSi1tW+DfiG3l4F7kn2zXxwrem7xc6M; + Expires=Fri, 14 Oct 2022 15:30:39 GMT; Path=/ + - AWSALBTGCORS=Yf6o1LLb/ck6fsIs1L2nyWzpYJRMOzgHjmHvhACXABdb9YmXUD0vPwc0XaOtcBPZS8wNODo15EPgi9l9NqIM4Jsxr3l0+7OapldERb4lhb4v8rl4ToY7NYGVwIA+a93fcy/0mIwEztcidCSi1tW+DfiG3l4F7kn2zXxwrem7xc6M; + Expires=Fri, 14 Oct 2022 15:30:39 GMT; Path=/; SameSite=None; Secure + - csrftoken=V5vOZT0zwtrOo2m7lEseL4UM8RRX4E3w4qINYE6HSamQKo178kBqfrX0pWVBfVxl; + expires=Fri, 06 Oct 2023 15:30:41 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=c9s0dvkclzirihfc45xiwj059g0y54qe; expires=Fri, 21 Oct 2022 15:30:41 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/80cc1878-0422-451b-ad49-a9436cfc8f48/ + - https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/c724c5f1-cc84-4bce-82c2-63e036c02562/ Vary: - Accept, Cookie, Origin Allow: @@ -392,11 +370,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/80cc1878-0422-451b-ad49-a9436cfc8f48/","id":"80cc1878-0422-451b-ad49-a9436cfc8f48","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T19:34:24.300809Z","modified_at":"2022-01-04T19:34:24.300809Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 19:34:24 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/c724c5f1-cc84-4bce-82c2-63e036c02562/","id":"c724c5f1-cc84-4bce-82c2-63e036c02562","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:30:41.406030Z","modified_at":"2022-10-07T15:30:41.406030Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:30:41 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/environments/ + uri: https://api.staging.cloudtruth.io/api/v1/environments/ body: encoding: US-ASCII string: '' @@ -404,7 +382,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -417,25 +395,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:34:25 GMT + - Fri, 07 Oct 2022 15:30:42 GMT Content-Type: - application/json Content-Length: - - '4139' + - '2085' Connection: - keep-alive Set-Cookie: - - AWSALB=RQfI6vFlINdOmJvWtXOL77vCyo7OROSeMVFNMzn4LP77qk9EXGrY0KULzn8kBQQCDQCap77pLfjkSpCmChc67UTWFE2qZ31ntxGzwqq76BQM1bSlj0gs3X4tvCRj; - Expires=Tue, 11 Jan 2022 19:34:24 GMT; Path=/ - - AWSALBCORS=RQfI6vFlINdOmJvWtXOL77vCyo7OROSeMVFNMzn4LP77qk9EXGrY0KULzn8kBQQCDQCap77pLfjkSpCmChc67UTWFE2qZ31ntxGzwqq76BQM1bSlj0gs3X4tvCRj; - Expires=Tue, 11 Jan 2022 19:34:24 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=fCQ/ff0FAdhzRvyKd4fGU6zvECQPh8UiEWi88tkYRc4RUFHG0dUsJB4PRrcMaiyZieMDBtUYqqOGm4+DzmNi85aWFkyrz6SgOsw7gETBnlDvNE+TDlrlFDmw+kNsVwtePP3HOKkrb321dQdWvGXEI5J6Y/0SVwIJNexz7jFQKgzy; - Expires=Tue, 11 Jan 2022 19:34:24 GMT; Path=/ - - AWSALBTGCORS=fCQ/ff0FAdhzRvyKd4fGU6zvECQPh8UiEWi88tkYRc4RUFHG0dUsJB4PRrcMaiyZieMDBtUYqqOGm4+DzmNi85aWFkyrz6SgOsw7gETBnlDvNE+TDlrlFDmw+kNsVwtePP3HOKkrb321dQdWvGXEI5J6Y/0SVwIJNexz7jFQKgzy; - Expires=Tue, 11 Jan 2022 19:34:24 GMT; Path=/; SameSite=None; Secure - - csrftoken=8tMgnCWoSqeXAabxiYsp6kAf7vhsiPFI4DZD6PhmKnL4P0CjgcuDcgVybdEcd5vj; - expires=Tue, 03 Jan 2023 19:34:25 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=1mllja5igqai27j25zewvf0x0j25aegs; expires=Tue, 18 Jan 2022 19:34:25 + - AWSALB=F6XDzeMmPvsJgLtsXmNOIuHiTAfAdQ9Ya6u3Rm+CtDJ67LYpMHpqkCYvZ0mQmGGCA9j2KSGsgQhFX23PqMa4nijwYCzb5YTN7v10k0j6jVyrzqxl0xpmv9jrRz1f; + Expires=Fri, 14 Oct 2022 15:30:41 GMT; Path=/ + - AWSALBCORS=F6XDzeMmPvsJgLtsXmNOIuHiTAfAdQ9Ya6u3Rm+CtDJ67LYpMHpqkCYvZ0mQmGGCA9j2KSGsgQhFX23PqMa4nijwYCzb5YTN7v10k0j6jVyrzqxl0xpmv9jrRz1f; + Expires=Fri, 14 Oct 2022 15:30:41 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=pwtTBydRVvWZDaQ1nc1hpu1i2mz5kmd0LctC2Yt/jGBB1VK2TONkJywErGhh6FadvgmOMG2rfE+00pHVtopB1frmelFhtpzwdEp7piuTvrwx1lQKliPcvdzy1saxRqsrGKVzFv7E2MR2PJiG3uP1fjF2qnlPIOXCjMfwhCSwYgBz; + Expires=Fri, 14 Oct 2022 15:30:41 GMT; Path=/ + - AWSALBTGCORS=pwtTBydRVvWZDaQ1nc1hpu1i2mz5kmd0LctC2Yt/jGBB1VK2TONkJywErGhh6FadvgmOMG2rfE+00pHVtopB1frmelFhtpzwdEp7piuTvrwx1lQKliPcvdzy1saxRqsrGKVzFv7E2MR2PJiG3uP1fjF2qnlPIOXCjMfwhCSwYgBz; + Expires=Fri, 14 Oct 2022 15:30:41 GMT; Path=/; SameSite=None; Secure + - csrftoken=mmFEpQxptkho3t21KYcQ6iiXlHF8ZXcKVBfqripyKM8qjanBAv4gKC3nFfYlRSoH; + expires=Fri, 06 Oct 2023 15:30:42 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=3jyvixxr5uygsdby94d2ab1q8l8kjl43; expires=Fri, 21 Oct 2022 15:30:42 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -453,24 +431,23 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":9,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","id":"e8bc190d-0354-4e66-91c9-64501e501ec5","name":"default","description":"The - auto-generated default environment.","parent":null,"children":["https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/"],"created_at":"2021-07-20T18:14:09.023022Z","modified_at":"2022-01-04T19:34:19.433012Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","id":"c4de304d-5dd4-4a41-80ec-9a469f1aa4f5","name":"development","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/"],"created_at":"2021-07-20T18:14:09.035255Z","modified_at":"2022-01-04T17:38:49.782969Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/","id":"12b9c81b-9002-423b-9ca7-22cece646d07","name":"dev-matt","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","children":[],"created_at":"2021-07-21T19:53:37.534082Z","modified_at":"2021-07-26T22:01:23.472634Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","id":"2281d9da-8376-4f45-baf2-372a71260dfa","name":"europe","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T19:53:47.438517Z","modified_at":"2021-07-26T22:01:29.331661Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","id":"c99d6ab9-4674-4f76-bb43-da0b19124e18","name":"local","description":"for - local development","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T19:53:50.000541Z","modified_at":"2021-07-26T22:01:32.150839Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","id":"ef133a2e-3c9c-4229-a509-e56332baff40","name":"ops","description":"The - ops environment - infrastructure that acts as the entry point to the other - environment''s infrastructure","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T20:05:10.325110Z","modified_at":"2021-07-26T22:01:35.184068Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","id":"cde7cf9d-8bf2-46cb-9e97-dee9b99e4335","name":"production","description":"for - real","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/"],"created_at":"2021-07-20T18:14:09.058957Z","modified_at":"2021-10-26T18:14:38.859067Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/","id":"e4399ff4-a962-451b-adfb-7e504ad6bb6d","name":"staging","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-20T18:14:09.047049Z","modified_at":"2021-07-26T18:46:21.385162Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/","id":"3afc0523-4722-4fa1-aaea-5d49beaa284d","name":"usa","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T20:05:24.767679Z","modified_at":"2021-07-26T18:44:51.186840Z"}]}' - recorded_at: Tue, 04 Jan 2022 19:34:24 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","id":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","name":"default","description":"Default + environment, base for all environments.","parent":null,"children":["https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/"],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.112161Z","modified_at":"2022-06-02T17:13:09.641786Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","id":"8f2e37b9-b429-4987-bb85-abd24bd67274","name":"development","description":"Development + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.123839Z","modified_at":"2022-06-02T17:11:55.123839Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","id":"0663ac09-5883-452b-bc1a-00e3347fece5","name":"production","description":"Production + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.145580Z","modified_at":"2022-06-02T17:11:55.145580Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/","id":"fc970cc2-c24f-427d-9c7a-70acde9f1b64","name":"staging","description":"Staging + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.134547Z","modified_at":"2022-06-02T17:11:55.134547Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:30:42 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/a240fdae-5e51-4ce3-8513-dc97e047c396/values/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/17545473-ccca-4a47-ab40-7e6ad5c381b9/values/ body: encoding: UTF-8 - string: '{"environment":"e8bc190d-0354-4e66-91c9-64501e501ec5","external":false,"internal_value":"defaultone"}' + string: '{"environment":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","external":false,"internal_value":"defaultone"}' headers: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -483,30 +460,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:34:25 GMT + - Fri, 07 Oct 2022 15:30:44 GMT Content-Type: - application/json Content-Length: - - '941' + - '993' Connection: - keep-alive Set-Cookie: - - AWSALB=KCAr5O9RsIGlscoggLaU1hj+MSGhMlLUNFoNs/9FT9zUsennrXD6vvgjacRZGoTywySmBJv+Ti48L5Cmj/YpSmfwvfpHcdt9s6wKC49ZKhR0zhFHcLHZok58NmoA; - Expires=Tue, 11 Jan 2022 19:34:25 GMT; Path=/ - - AWSALBCORS=KCAr5O9RsIGlscoggLaU1hj+MSGhMlLUNFoNs/9FT9zUsennrXD6vvgjacRZGoTywySmBJv+Ti48L5Cmj/YpSmfwvfpHcdt9s6wKC49ZKhR0zhFHcLHZok58NmoA; - Expires=Tue, 11 Jan 2022 19:34:25 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=WSvAet4jP7O8qdd+HGKYRyTNoe0S/skLYyr8SQxqRcmoFMRz6b25PAV1OLjA8jbQn1wQDijHq7ySShKuvox4kxOlTKVIUUIYepEPf2NO+y6mW7gQcIPtcz7VniTpRtUTxLBMkebKW5/KSXkaCrUUPhJiLanvWz2tf6mvgYOn+0fn; - Expires=Tue, 11 Jan 2022 19:34:25 GMT; Path=/ - - AWSALBTGCORS=WSvAet4jP7O8qdd+HGKYRyTNoe0S/skLYyr8SQxqRcmoFMRz6b25PAV1OLjA8jbQn1wQDijHq7ySShKuvox4kxOlTKVIUUIYepEPf2NO+y6mW7gQcIPtcz7VniTpRtUTxLBMkebKW5/KSXkaCrUUPhJiLanvWz2tf6mvgYOn+0fn; - Expires=Tue, 11 Jan 2022 19:34:25 GMT; Path=/; SameSite=None; Secure - - csrftoken=Qu2XptV5jgtCFnf5dMionCexEa13JUNgZUcDCX694a0TBSRycszLXw6EeUAQtpwa; - expires=Tue, 03 Jan 2023 19:34:25 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=nlod6wxzcw4mitbl9iw72b6124lsz3if; expires=Tue, 18 Jan 2022 19:34:25 + - AWSALB=uNAdEVrJ1FjJ5TUMsN7tdomIZh2n/o6iV4ovQ9J3Xyzpgj+Y6ayRsjcF60sc1U4r9a7QQ5mvnQkx/ZPclqhazkpaXabLYdkZ+XhTUxNpRzhH2WUEK0RYec9TAwmC; + Expires=Fri, 14 Oct 2022 15:30:42 GMT; Path=/ + - AWSALBCORS=uNAdEVrJ1FjJ5TUMsN7tdomIZh2n/o6iV4ovQ9J3Xyzpgj+Y6ayRsjcF60sc1U4r9a7QQ5mvnQkx/ZPclqhazkpaXabLYdkZ+XhTUxNpRzhH2WUEK0RYec9TAwmC; + Expires=Fri, 14 Oct 2022 15:30:42 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=dbLYLJ098cqG6l/AzeCxXMPaospu9q7/cnsY8K2JooK/R83V+yCu3KCwNFZ5Da4Is8p1eq+76NbppZmAj5jkPyH83ssOEMHtlitVom1SNvk3ZDc3QxdeaX8xcSyDS1NQkzV890iEQHXoQ5K1rDt1k717S/cSmvPl4bXePejaITiu; + Expires=Fri, 14 Oct 2022 15:30:42 GMT; Path=/ + - AWSALBTGCORS=dbLYLJ098cqG6l/AzeCxXMPaospu9q7/cnsY8K2JooK/R83V+yCu3KCwNFZ5Da4Is8p1eq+76NbppZmAj5jkPyH83ssOEMHtlitVom1SNvk3ZDc3QxdeaX8xcSyDS1NQkzV890iEQHXoQ5K1rDt1k717S/cSmvPl4bXePejaITiu; + Expires=Fri, 14 Oct 2022 15:30:42 GMT; Path=/; SameSite=None; Secure + - csrftoken=mOjrahYN384jdl8sb3zXBQCfshhVGZf6awqkb5ZpOujP9KYAHmm0kkCZCqcGa5kn; + expires=Fri, 06 Oct 2023 15:30:44 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=67emo0oj7g74td9ur6eyc4jfuw5rmblv; expires=Fri, 21 Oct 2022 15:30:44 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/a240fdae-5e51-4ce3-8513-dc97e047c396/values/d313e273-6a00-42c6-b782-15515ea1f6e0/ + - https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/17545473-ccca-4a47-ab40-7e6ad5c381b9/values/5cd84f14-023e-4757-8810-9f9e95c7d84a/ Vary: - Accept, Cookie, Origin Allow: @@ -521,19 +498,19 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/a240fdae-5e51-4ce3-8513-dc97e047c396/values/d313e273-6a00-42c6-b782-15515ea1f6e0/","id":"d313e273-6a00-42c6-b782-15515ea1f6e0","environment":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","environment_name":"default","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/a240fdae-5e51-4ce3-8513-dc97e047c396/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"defaultone","interpolated":false,"value":"defaultone","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:34:25.557794Z","modified_at":"2022-01-04T19:34:25.557794Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaultone"}' - recorded_at: Tue, 04 Jan 2022 19:34:25 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/17545473-ccca-4a47-ab40-7e6ad5c381b9/values/5cd84f14-023e-4757-8810-9f9e95c7d84a/","id":"5cd84f14-023e-4757-8810-9f9e95c7d84a","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/17545473-ccca-4a47-ab40-7e6ad5c381b9/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"defaultone","interpolated":false,"value":"defaultone","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:30:44.021152Z","modified_at":"2022-10-07T15:30:44.021152Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaultone"}' + recorded_at: Fri, 07 Oct 2022 15:30:44 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/a240fdae-5e51-4ce3-8513-dc97e047c396/values/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/17545473-ccca-4a47-ab40-7e6ad5c381b9/values/ body: encoding: UTF-8 - string: '{"environment":"c4de304d-5dd4-4a41-80ec-9a469f1aa4f5","external":false,"internal_value":"developmentone"}' + string: '{"environment":"8f2e37b9-b429-4987-bb85-abd24bd67274","external":false,"internal_value":"developmentone"}' headers: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -546,30 +523,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:34:26 GMT + - Fri, 07 Oct 2022 15:30:45 GMT Content-Type: - application/json Content-Length: - - '957' + - '1009' Connection: - keep-alive Set-Cookie: - - AWSALB=SEzeQu8c7kpmHRyDppDloCFHk3Pn47AeGgy3fdz7vQxr1bl1E9mcUR/89wNERcAqI7/QvVuwf/X+M2SaAnPAgajAKCLTpLbCfZutuCWBVPPXPH5ZuQWv7mPXs23I; - Expires=Tue, 11 Jan 2022 19:34:25 GMT; Path=/ - - AWSALBCORS=SEzeQu8c7kpmHRyDppDloCFHk3Pn47AeGgy3fdz7vQxr1bl1E9mcUR/89wNERcAqI7/QvVuwf/X+M2SaAnPAgajAKCLTpLbCfZutuCWBVPPXPH5ZuQWv7mPXs23I; - Expires=Tue, 11 Jan 2022 19:34:25 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=rsTbMVYXBbawDlBE9KXJSB36TPFUz7y+T/p+PRKDY6LZQ+bz5a5MI4iVULSNngjoBwhrT+UHJglV6cyBGy5BlvKe06fVjyK2Y3kiYwgDBRJz7XB/7601yCbrWTKeexYiHrb1HzDb8bfkYGFu4lYnPbbFUrHsd4WFgGdpHGSHtkZw; - Expires=Tue, 11 Jan 2022 19:34:25 GMT; Path=/ - - AWSALBTGCORS=rsTbMVYXBbawDlBE9KXJSB36TPFUz7y+T/p+PRKDY6LZQ+bz5a5MI4iVULSNngjoBwhrT+UHJglV6cyBGy5BlvKe06fVjyK2Y3kiYwgDBRJz7XB/7601yCbrWTKeexYiHrb1HzDb8bfkYGFu4lYnPbbFUrHsd4WFgGdpHGSHtkZw; - Expires=Tue, 11 Jan 2022 19:34:25 GMT; Path=/; SameSite=None; Secure - - csrftoken=ByERkKJ5GEgpRC0LHrMBOSeTOS3034X2HzXc7IidyhgUYDVO5VLFfuAsbCvUVL0q; - expires=Tue, 03 Jan 2023 19:34:26 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=e4x763mx36b3xzitf5irydvdjj0xwb6x; expires=Tue, 18 Jan 2022 19:34:26 + - AWSALB=RkJ+51UDJU9stLkA+LFJLyRFuN4ebA6iVHwlKcrI9h8cZEt/EgF8l5mDH8RPUByJffWEa09/lUykhrcuBwMw3lhpYmCKxl7Fa1e44ekoKEj18k5SDaIQkAPeKoyF; + Expires=Fri, 14 Oct 2022 15:30:44 GMT; Path=/ + - AWSALBCORS=RkJ+51UDJU9stLkA+LFJLyRFuN4ebA6iVHwlKcrI9h8cZEt/EgF8l5mDH8RPUByJffWEa09/lUykhrcuBwMw3lhpYmCKxl7Fa1e44ekoKEj18k5SDaIQkAPeKoyF; + Expires=Fri, 14 Oct 2022 15:30:44 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=84Xcumbtl2YxYNYou/huRPtWZQ7bNz/ZCYdjMsL3MTQJ0i3NRKXDdMroXNTMVMTumMCcvUUFJ2KMA0s2tdCmnhWeSW2F1kbzoGDi9PKG5/OtV2INTH9z3ZSuPOfGyakyhxoMYS8B4gejOGdzwr14CIdeRlnS9YzMG2PUb2mYXzTZ; + Expires=Fri, 14 Oct 2022 15:30:44 GMT; Path=/ + - AWSALBTGCORS=84Xcumbtl2YxYNYou/huRPtWZQ7bNz/ZCYdjMsL3MTQJ0i3NRKXDdMroXNTMVMTumMCcvUUFJ2KMA0s2tdCmnhWeSW2F1kbzoGDi9PKG5/OtV2INTH9z3ZSuPOfGyakyhxoMYS8B4gejOGdzwr14CIdeRlnS9YzMG2PUb2mYXzTZ; + Expires=Fri, 14 Oct 2022 15:30:44 GMT; Path=/; SameSite=None; Secure + - csrftoken=Tkkbg5XaD7D9GbqhoGrXQkwrfvf4NZRMYsDhS7H9dPtbod2fbrd3WZvwmxoOTvca; + expires=Fri, 06 Oct 2023 15:30:45 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=cctp9eiag83qa91tk7bhy54l0917wgj1; expires=Fri, 21 Oct 2022 15:30:45 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/a240fdae-5e51-4ce3-8513-dc97e047c396/values/43c4f11a-4c23-42a2-8727-c0ddc6a30bb0/ + - https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/17545473-ccca-4a47-ab40-7e6ad5c381b9/values/d72165c5-32c1-430d-a29d-b38e7e41a9f6/ Vary: - Accept, Cookie, Origin Allow: @@ -584,19 +561,19 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/a240fdae-5e51-4ce3-8513-dc97e047c396/values/43c4f11a-4c23-42a2-8727-c0ddc6a30bb0/","id":"43c4f11a-4c23-42a2-8727-c0ddc6a30bb0","environment":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","environment_name":"development","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/a240fdae-5e51-4ce3-8513-dc97e047c396/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"developmentone","interpolated":false,"value":"developmentone","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:34:26.226374Z","modified_at":"2022-01-04T19:34:26.226374Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"developmentone"}' - recorded_at: Tue, 04 Jan 2022 19:34:26 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/17545473-ccca-4a47-ab40-7e6ad5c381b9/values/d72165c5-32c1-430d-a29d-b38e7e41a9f6/","id":"d72165c5-32c1-430d-a29d-b38e7e41a9f6","environment":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","environment_name":"development","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/17545473-ccca-4a47-ab40-7e6ad5c381b9/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"developmentone","interpolated":false,"value":"developmentone","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:30:45.731023Z","modified_at":"2022-10-07T15:30:45.731023Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"developmentone"}' + recorded_at: Fri, 07 Oct 2022 15:30:45 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/80cc1878-0422-451b-ad49-a9436cfc8f48/values/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/c724c5f1-cc84-4bce-82c2-63e036c02562/values/ body: encoding: UTF-8 - string: '{"environment":"e8bc190d-0354-4e66-91c9-64501e501ec5","external":false,"internal_value":"defaulttwo"}' + string: '{"environment":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","external":false,"internal_value":"defaulttwo"}' headers: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -609,30 +586,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:34:26 GMT + - Fri, 07 Oct 2022 15:30:47 GMT Content-Type: - application/json Content-Length: - - '941' + - '993' Connection: - keep-alive Set-Cookie: - - AWSALB=l2jYxUp1iqSxALCoe6bgLUyLB3BZBiX5zGuI5j8ubM1sR7lDbfFhFyDjC+l6XTlg7DYh5UflXaK1KEMvg17a3PVdHz9uHxq0eVXO4O523xP2QMV+3Fq1PLiWIeWo; - Expires=Tue, 11 Jan 2022 19:34:26 GMT; Path=/ - - AWSALBCORS=l2jYxUp1iqSxALCoe6bgLUyLB3BZBiX5zGuI5j8ubM1sR7lDbfFhFyDjC+l6XTlg7DYh5UflXaK1KEMvg17a3PVdHz9uHxq0eVXO4O523xP2QMV+3Fq1PLiWIeWo; - Expires=Tue, 11 Jan 2022 19:34:26 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=EtAnZvp1pWpxH5tZ251Uyus9hQIpaCwAepV0uUIcVlprGNqMHBEEWFAuyUJ9xIflRmV+8cgXSYuCUPNC2K6BlcvKEt/Pntq2aX29fNbE1z6VjJ23EvB4dwD8XP/YpezjAIUg8YUTwLXl/H8UKqIwu0zOpzm5udtT/LG5qVdSSvjj; - Expires=Tue, 11 Jan 2022 19:34:26 GMT; Path=/ - - AWSALBTGCORS=EtAnZvp1pWpxH5tZ251Uyus9hQIpaCwAepV0uUIcVlprGNqMHBEEWFAuyUJ9xIflRmV+8cgXSYuCUPNC2K6BlcvKEt/Pntq2aX29fNbE1z6VjJ23EvB4dwD8XP/YpezjAIUg8YUTwLXl/H8UKqIwu0zOpzm5udtT/LG5qVdSSvjj; - Expires=Tue, 11 Jan 2022 19:34:26 GMT; Path=/; SameSite=None; Secure - - csrftoken=uIj48taqWbHAIKrRgYA5aTowqGYw4ACf1fCKiD8LlFZW8X0hY67RI1c0F6Snkh6b; - expires=Tue, 03 Jan 2023 19:34:26 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=ovo2w8tmm7hksses9ck0uqw64gvntx04; expires=Tue, 18 Jan 2022 19:34:26 + - AWSALB=mHzKsTE28iAx2FopVLfcClwOSBvuNzscno2Szff2zvs3jpo/J5n3t0LHfzhYFMyxoIqUhaW2aY8c+pj95PepubXZ62esEhuXSKrIfjN5yMUx2bsBPKIrEVlIioeB; + Expires=Fri, 14 Oct 2022 15:30:45 GMT; Path=/ + - AWSALBCORS=mHzKsTE28iAx2FopVLfcClwOSBvuNzscno2Szff2zvs3jpo/J5n3t0LHfzhYFMyxoIqUhaW2aY8c+pj95PepubXZ62esEhuXSKrIfjN5yMUx2bsBPKIrEVlIioeB; + Expires=Fri, 14 Oct 2022 15:30:45 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=xucgM9gUgj1cLY1dGOm7h3hzXTTHgxz16vJFmosciF19295HMnZdrLQ5Ez5lu3kgcXbi2UOhptMzv2f2dE/y7NFBb7I3AzBr8ysQ0kDkEciQCTRuGVZ20ItyMDN6VpnExijRU7W0H5+yF6xmNlWtPigQvkmBmRI3E1WQD90FGJ1C; + Expires=Fri, 14 Oct 2022 15:30:45 GMT; Path=/ + - AWSALBTGCORS=xucgM9gUgj1cLY1dGOm7h3hzXTTHgxz16vJFmosciF19295HMnZdrLQ5Ez5lu3kgcXbi2UOhptMzv2f2dE/y7NFBb7I3AzBr8ysQ0kDkEciQCTRuGVZ20ItyMDN6VpnExijRU7W0H5+yF6xmNlWtPigQvkmBmRI3E1WQD90FGJ1C; + Expires=Fri, 14 Oct 2022 15:30:45 GMT; Path=/; SameSite=None; Secure + - csrftoken=Ig8GNC2W9ngtEtjsBrVf0BFfmF0QgltxJMDLubPCWrY7kqPWWDhZ0KamgPUkU0k2; + expires=Fri, 06 Oct 2023 15:30:47 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=zn62ckrlstsquyzru8ghj0lgdmamxb91; expires=Fri, 21 Oct 2022 15:30:47 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/80cc1878-0422-451b-ad49-a9436cfc8f48/values/df3618af-1448-4ffc-a1f3-df7db49cc966/ + - https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/c724c5f1-cc84-4bce-82c2-63e036c02562/values/d3ef1079-241c-45a1-a101-89a1d8a4cca0/ Vary: - Accept, Cookie, Origin Allow: @@ -647,19 +624,19 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/80cc1878-0422-451b-ad49-a9436cfc8f48/values/df3618af-1448-4ffc-a1f3-df7db49cc966/","id":"df3618af-1448-4ffc-a1f3-df7db49cc966","environment":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","environment_name":"default","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/80cc1878-0422-451b-ad49-a9436cfc8f48/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"defaulttwo","interpolated":false,"value":"defaulttwo","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:34:26.820126Z","modified_at":"2022-01-04T19:34:26.820126Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaulttwo"}' - recorded_at: Tue, 04 Jan 2022 19:34:26 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/c724c5f1-cc84-4bce-82c2-63e036c02562/values/d3ef1079-241c-45a1-a101-89a1d8a4cca0/","id":"d3ef1079-241c-45a1-a101-89a1d8a4cca0","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/c724c5f1-cc84-4bce-82c2-63e036c02562/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"defaulttwo","interpolated":false,"value":"defaulttwo","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:30:47.607319Z","modified_at":"2022-10-07T15:30:47.607319Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaulttwo"}' + recorded_at: Fri, 07 Oct 2022 15:30:47 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/80cc1878-0422-451b-ad49-a9436cfc8f48/values/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/c724c5f1-cc84-4bce-82c2-63e036c02562/values/ body: encoding: UTF-8 - string: '{"environment":"c4de304d-5dd4-4a41-80ec-9a469f1aa4f5","external":false,"internal_value":"developmenttwo"}' + string: '{"environment":"8f2e37b9-b429-4987-bb85-abd24bd67274","external":false,"internal_value":"developmenttwo"}' headers: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -672,30 +649,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 19:34:27 GMT + - Fri, 07 Oct 2022 15:30:49 GMT Content-Type: - application/json Content-Length: - - '957' + - '1009' Connection: - keep-alive Set-Cookie: - - AWSALB=PmzImcW8nT9NmeSjq2Jap8uD/tHuOQP/i3ICVCcviRGmvdxCnaJXhn7UwPkvOrxdIpTq54i2h+ZJDJeGp1yCC6s/wb+t6132oR/6x6QE+TucJT4Q6dBA84R7BSDs; - Expires=Tue, 11 Jan 2022 19:34:27 GMT; Path=/ - - AWSALBCORS=PmzImcW8nT9NmeSjq2Jap8uD/tHuOQP/i3ICVCcviRGmvdxCnaJXhn7UwPkvOrxdIpTq54i2h+ZJDJeGp1yCC6s/wb+t6132oR/6x6QE+TucJT4Q6dBA84R7BSDs; - Expires=Tue, 11 Jan 2022 19:34:27 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=iHXFcUdIS1d2qiWsCPMu5Cw0kk+X8DTllMHwdbW4BYm9eYI8Hfi8+gycoQa9gsnwOOdxPxzcDWCe+3AhkLLEVrzOviod7mbZVm7/Odshn8PlE6ZOovrnGRZVVpzjaSVTySsz8jHHBpczYsZNDhnShaN/ChyodzZWSpZ8VNyx4Cp8; - Expires=Tue, 11 Jan 2022 19:34:27 GMT; Path=/ - - AWSALBTGCORS=iHXFcUdIS1d2qiWsCPMu5Cw0kk+X8DTllMHwdbW4BYm9eYI8Hfi8+gycoQa9gsnwOOdxPxzcDWCe+3AhkLLEVrzOviod7mbZVm7/Odshn8PlE6ZOovrnGRZVVpzjaSVTySsz8jHHBpczYsZNDhnShaN/ChyodzZWSpZ8VNyx4Cp8; - Expires=Tue, 11 Jan 2022 19:34:27 GMT; Path=/; SameSite=None; Secure - - csrftoken=tSeVqc1qfgWP2qZyEkj8RnavhxTGITQ9jSxdu4xBCsxWVAbybKhJjgpaRB3YsHqh; - expires=Tue, 03 Jan 2023 19:34:27 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=4kwkcw8f93skxycfyl5z1pcgmqmfvxjt; expires=Tue, 18 Jan 2022 19:34:27 + - AWSALB=/i1LEDEmmjr3lCbhKWeIrWelAxUuSbkIWL5uAEOjZxRAYGnDSx5/Mb/lr4R7UyyKqbSXLuGkkI1jKvob/u0wXZ+sKernDYrFkGKEWfEgi27iOsxstkYWqYqGptyJ; + Expires=Fri, 14 Oct 2022 15:30:47 GMT; Path=/ + - AWSALBCORS=/i1LEDEmmjr3lCbhKWeIrWelAxUuSbkIWL5uAEOjZxRAYGnDSx5/Mb/lr4R7UyyKqbSXLuGkkI1jKvob/u0wXZ+sKernDYrFkGKEWfEgi27iOsxstkYWqYqGptyJ; + Expires=Fri, 14 Oct 2022 15:30:47 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=rsBU2eumaT4jCa/nMNIENiSijY+7i7QKUBNC7axm8SF15didjrLY9PRn0VRKVPetnIfNCk20suMWYWyyhdL8rv/Jxq0JKR5eXBfbeczwX2LuEfGgm74Je19uivohbU+0001zttlTQjqNeB77WMa9RaDzunUGgVUlgC6+nQkWfK6Q; + Expires=Fri, 14 Oct 2022 15:30:47 GMT; Path=/ + - AWSALBTGCORS=rsBU2eumaT4jCa/nMNIENiSijY+7i7QKUBNC7axm8SF15didjrLY9PRn0VRKVPetnIfNCk20suMWYWyyhdL8rv/Jxq0JKR5eXBfbeczwX2LuEfGgm74Je19uivohbU+0001zttlTQjqNeB77WMa9RaDzunUGgVUlgC6+nQkWfK6Q; + Expires=Fri, 14 Oct 2022 15:30:47 GMT; Path=/; SameSite=None; Secure + - csrftoken=TXYopGB2EbpZFbMlvFNK3K8KDnUCzVqBm2NDEkh2y9OTTGDht1N5W0igWSatuui8; + expires=Fri, 06 Oct 2023 15:30:49 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=92fihc7i3vrnliulnraxdvdvh3dqwlq7; expires=Fri, 21 Oct 2022 15:30:49 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/80cc1878-0422-451b-ad49-a9436cfc8f48/values/10ad6b88-81ab-4e38-ba8b-7bb0817134ce/ + - https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/c724c5f1-cc84-4bce-82c2-63e036c02562/values/94cae9b2-97fe-4e71-b733-8a1f195f48e4/ Vary: - Accept, Cookie, Origin Allow: @@ -710,11 +687,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/80cc1878-0422-451b-ad49-a9436cfc8f48/values/10ad6b88-81ab-4e38-ba8b-7bb0817134ce/","id":"10ad6b88-81ab-4e38-ba8b-7bb0817134ce","environment":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","environment_name":"development","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/80cc1878-0422-451b-ad49-a9436cfc8f48/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"developmenttwo","interpolated":false,"value":"developmenttwo","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:34:27.489417Z","modified_at":"2022-01-04T19:34:27.489417Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"developmenttwo"}' - recorded_at: Tue, 04 Jan 2022 19:34:27 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/c724c5f1-cc84-4bce-82c2-63e036c02562/values/94cae9b2-97fe-4e71-b733-8a1f195f48e4/","id":"94cae9b2-97fe-4e71-b733-8a1f195f48e4","environment":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","environment_name":"development","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/c724c5f1-cc84-4bce-82c2-63e036c02562/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"developmenttwo","interpolated":false,"value":"developmenttwo","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:30:49.497827Z","modified_at":"2022-10-07T15:30:49.497827Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"developmenttwo"}' + recorded_at: Fri, 07 Oct 2022 15:30:49 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/?environment=e8bc190d-0354-4e66-91c9-64501e501ec5 + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -722,7 +699,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -735,25 +712,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:34:28 GMT + - Fri, 07 Oct 2022 15:30:51 GMT Content-Type: - application/json Content-Length: - - '3185' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=yEjG5f64dK/mRMN/FaHGRYuy1TdR8EEaUKuW8oNQvQdtQoViMmakyzGb3cXANApz4UIsfFYY1lznTRJZDvEF3OTMqjUI1mwO2M9j5ohZwkf2LlqqPgPu9Pyh1feX; - Expires=Tue, 11 Jan 2022 19:34:27 GMT; Path=/ - - AWSALBCORS=yEjG5f64dK/mRMN/FaHGRYuy1TdR8EEaUKuW8oNQvQdtQoViMmakyzGb3cXANApz4UIsfFYY1lznTRJZDvEF3OTMqjUI1mwO2M9j5ohZwkf2LlqqPgPu9Pyh1feX; - Expires=Tue, 11 Jan 2022 19:34:27 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=PXJoGx4SmyMzvCVeTJeI6byTloz0mKUvIEMgqX8qM22dyZTInbUGA/SD1OCJCcMuczicuYoNFxcI9Gv54a/FBtG8QvDx3F/bYteb49/cfWdHU+a7ED/nqjCJcvx0ez4swNfoRb9E5HoXJSbVYtpvYPrHxDZHo4SnpY6pvheERxW2; - Expires=Tue, 11 Jan 2022 19:34:27 GMT; Path=/ - - AWSALBTGCORS=PXJoGx4SmyMzvCVeTJeI6byTloz0mKUvIEMgqX8qM22dyZTInbUGA/SD1OCJCcMuczicuYoNFxcI9Gv54a/FBtG8QvDx3F/bYteb49/cfWdHU+a7ED/nqjCJcvx0ez4swNfoRb9E5HoXJSbVYtpvYPrHxDZHo4SnpY6pvheERxW2; - Expires=Tue, 11 Jan 2022 19:34:27 GMT; Path=/; SameSite=None; Secure - - csrftoken=3PylkY2jIUvtQZ10uJ6rjgHlO99Ma3vRMkkm2nCeQMSx9hT4exoJ6elsYx7m3JVf; - expires=Tue, 03 Jan 2023 19:34:28 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=shb9hrfvzhmc0iq61rs0p6ws7j9d2aw0; expires=Tue, 18 Jan 2022 19:34:28 + - AWSALB=ZPu0TMZBwajN7omBBMTcD5zW8lv6IgnxK5qqSgvhvyUL0TgIBvVzj0HTQ4JD9rsYsPHiHkl8S4zsfFhGBo7bnt4KEeMPXMFChMsnpy+GbuZ56aTCHFe7IXmF1P22; + Expires=Fri, 14 Oct 2022 15:30:49 GMT; Path=/ + - AWSALBCORS=ZPu0TMZBwajN7omBBMTcD5zW8lv6IgnxK5qqSgvhvyUL0TgIBvVzj0HTQ4JD9rsYsPHiHkl8S4zsfFhGBo7bnt4KEeMPXMFChMsnpy+GbuZ56aTCHFe7IXmF1P22; + Expires=Fri, 14 Oct 2022 15:30:49 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=rrTAUgRsY9GM6WUXW7MG+JFsXBkQGSC5zFgEv5xxLe2y4D+Y7u029nzxDU4BlrWigy8t83SotpTvsSkDNVSK62kvI8tx2JXb3gZp4QXT+LHIE6ZAWvNWazKQWFoDWyWgx5Vz0s9aUCjtDYFXJNqasfmtyRbbz5EIK1ucs39/XQIn; + Expires=Fri, 14 Oct 2022 15:30:49 GMT; Path=/ + - AWSALBTGCORS=rrTAUgRsY9GM6WUXW7MG+JFsXBkQGSC5zFgEv5xxLe2y4D+Y7u029nzxDU4BlrWigy8t83SotpTvsSkDNVSK62kvI8tx2JXb3gZp4QXT+LHIE6ZAWvNWazKQWFoDWyWgx5Vz0s9aUCjtDYFXJNqasfmtyRbbz5EIK1ucs39/XQIn; + Expires=Fri, 14 Oct 2022 15:30:49 GMT; Path=/; SameSite=None; Secure + - csrftoken=xef5Ofo9xFvaNvGOfPRDGmx4bHZGRmPEho90MXGMpMcgxUpPz47XEiSd3V2sXuhi; + expires=Fri, 06 Oct 2023 15:30:51 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=k5xf1vwxd7vqu3clw0csu3erfw0n7vdf; expires=Fri, 21 Oct 2022 15:30:51 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -771,11 +748,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/a240fdae-5e51-4ce3-8513-dc97e047c396/","id":"a240fdae-5e51-4ce3-8513-dc97e047c396","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":{"url":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/a240fdae-5e51-4ce3-8513-dc97e047c396/values/d313e273-6a00-42c6-b782-15515ea1f6e0/","id":"d313e273-6a00-42c6-b782-15515ea1f6e0","environment":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","environment_name":"default","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/a240fdae-5e51-4ce3-8513-dc97e047c396/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"defaultone","interpolated":false,"value":"defaultone","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:34:25.557794Z","modified_at":"2022-01-04T19:34:25.557794Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaultone"}},"created_at":"2022-01-04T19:34:23.732684Z","modified_at":"2022-01-04T19:34:26.226374Z","templates":[]},{"url":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/80cc1878-0422-451b-ad49-a9436cfc8f48/","id":"80cc1878-0422-451b-ad49-a9436cfc8f48","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":{"url":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/80cc1878-0422-451b-ad49-a9436cfc8f48/values/df3618af-1448-4ffc-a1f3-df7db49cc966/","id":"df3618af-1448-4ffc-a1f3-df7db49cc966","environment":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","environment_name":"default","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/80cc1878-0422-451b-ad49-a9436cfc8f48/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"defaulttwo","interpolated":false,"value":"defaulttwo","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:34:26.820126Z","modified_at":"2022-01-04T19:34:26.820126Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaulttwo"}},"created_at":"2022-01-04T19:34:24.300809Z","modified_at":"2022-01-04T19:34:27.489417Z","templates":[]}]}' - recorded_at: Tue, 04 Jan 2022 19:34:28 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/","id":"25d1e833-a351-458e-ab6f-cb09ae6bc20d","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:30:36.977702Z","modified_at":"2022-10-07T15:30:36.977702Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:30:51 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/?environment=c4de304d-5dd4-4a41-80ec-9a469f1aa4f5 + uri: https://api.staging.cloudtruth.io/api/v1/environments/ body: encoding: US-ASCII string: '' @@ -783,7 +761,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -796,25 +774,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 19:34:28 GMT + - Fri, 07 Oct 2022 15:30:52 GMT Content-Type: - application/json Content-Length: - - '3217' + - '2085' Connection: - keep-alive Set-Cookie: - - AWSALB=95AQSWaB00uuiyUZH8l84BCPjq/6GsRrecpVxOH0DOBBiL+7UN1MFYYDeIQZyM7dPfj0xyFn9Qsr/gfeZw1KRSPdbrbhZqdEQUzlAhkoUYtd0378hpGpYkZ8dGNf; - Expires=Tue, 11 Jan 2022 19:34:28 GMT; Path=/ - - AWSALBCORS=95AQSWaB00uuiyUZH8l84BCPjq/6GsRrecpVxOH0DOBBiL+7UN1MFYYDeIQZyM7dPfj0xyFn9Qsr/gfeZw1KRSPdbrbhZqdEQUzlAhkoUYtd0378hpGpYkZ8dGNf; - Expires=Tue, 11 Jan 2022 19:34:28 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=8jfV/Ejh7C6grz1pmBWqyJxQZ7e+A69ZT2L5UXUybDgOuHIVsyFBJLsRFvo44yHvLXxvj24JMVKmClN/IRTCOQ+jIV0fATTp30QSQL2W5sy8ez26BoAu8Oq8vC38GtZcAgcxXGkUe2hISBJLfN0JM7raDtFL5KF+u8aYXkXgfE3I; - Expires=Tue, 11 Jan 2022 19:34:28 GMT; Path=/ - - AWSALBTGCORS=8jfV/Ejh7C6grz1pmBWqyJxQZ7e+A69ZT2L5UXUybDgOuHIVsyFBJLsRFvo44yHvLXxvj24JMVKmClN/IRTCOQ+jIV0fATTp30QSQL2W5sy8ez26BoAu8Oq8vC38GtZcAgcxXGkUe2hISBJLfN0JM7raDtFL5KF+u8aYXkXgfE3I; - Expires=Tue, 11 Jan 2022 19:34:28 GMT; Path=/; SameSite=None; Secure - - csrftoken=ghmpdh2D7RfQA2DTqa7MKdXy5ONiSY7AlryX6e03LO8wuEiwIaStBGAtKNEtKXZm; - expires=Tue, 03 Jan 2023 19:34:28 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=6hz4hg98dxfdzdrhgxkmk1asvc7vst9c; expires=Tue, 18 Jan 2022 19:34:28 + - AWSALB=b3VTTU3EwxHq5Ej+nPXnLWSFx4kdcFj7ZbqA3xSX/WasaTqyfIwguT8V0v6C27d5b6HQwUKqbXUO3siwMp4E1ocr/mBAwvNSvLk2LyOVyTnSxIbiIeea5enEP/Jv; + Expires=Fri, 14 Oct 2022 15:30:51 GMT; Path=/ + - AWSALBCORS=b3VTTU3EwxHq5Ej+nPXnLWSFx4kdcFj7ZbqA3xSX/WasaTqyfIwguT8V0v6C27d5b6HQwUKqbXUO3siwMp4E1ocr/mBAwvNSvLk2LyOVyTnSxIbiIeea5enEP/Jv; + Expires=Fri, 14 Oct 2022 15:30:51 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=LYbKf+to3dokJUQOZAb6HN/HVnlvxVoVgvEpZFg/iXB6AMyUym85Bt0hxLWbAJIo4JyHsOl/EdB9GWEg8G6Ex8LDBpkxJVNRdRn/wkYGvBrIVfRYCm1Aas8W+LVk3sq9/zoEqPue3MAyhtHk9EKoZkjKDkCE6QLZJ56N6pqkEdWr; + Expires=Fri, 14 Oct 2022 15:30:51 GMT; Path=/ + - AWSALBTGCORS=LYbKf+to3dokJUQOZAb6HN/HVnlvxVoVgvEpZFg/iXB6AMyUym85Bt0hxLWbAJIo4JyHsOl/EdB9GWEg8G6Ex8LDBpkxJVNRdRn/wkYGvBrIVfRYCm1Aas8W+LVk3sq9/zoEqPue3MAyhtHk9EKoZkjKDkCE6QLZJ56N6pqkEdWr; + Expires=Fri, 14 Oct 2022 15:30:51 GMT; Path=/; SameSite=None; Secure + - csrftoken=pEMDl9t1EKxThWQTiK8gh2w69Rl8JcG0apOgdQwfc8Y4GZhZAVpuOYTDDENwFXon; + expires=Fri, 06 Oct 2023 15:30:52 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=mydlftmzhzlnw3uf1gjxfwasxdmmzy7n; expires=Fri, 21 Oct 2022 15:30:52 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -832,6 +810,259 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/a240fdae-5e51-4ce3-8513-dc97e047c396/","id":"a240fdae-5e51-4ce3-8513-dc97e047c396","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":{"url":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/a240fdae-5e51-4ce3-8513-dc97e047c396/values/43c4f11a-4c23-42a2-8727-c0ddc6a30bb0/","id":"43c4f11a-4c23-42a2-8727-c0ddc6a30bb0","environment":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","environment_name":"development","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/a240fdae-5e51-4ce3-8513-dc97e047c396/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"developmentone","interpolated":false,"value":"developmentone","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:34:26.226374Z","modified_at":"2022-01-04T19:34:26.226374Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"developmentone"}},"created_at":"2022-01-04T19:34:23.732684Z","modified_at":"2022-01-04T19:34:26.226374Z","templates":[]},{"url":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/80cc1878-0422-451b-ad49-a9436cfc8f48/","id":"80cc1878-0422-451b-ad49-a9436cfc8f48","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":{"url":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/80cc1878-0422-451b-ad49-a9436cfc8f48/values/10ad6b88-81ab-4e38-ba8b-7bb0817134ce/","id":"10ad6b88-81ab-4e38-ba8b-7bb0817134ce","environment":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","environment_name":"development","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/b6a17501-3398-40fe-8ac0-57ad5196e8ac/parameters/80cc1878-0422-451b-ad49-a9436cfc8f48/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"developmenttwo","interpolated":false,"value":"developmenttwo","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T19:34:27.489417Z","modified_at":"2022-01-04T19:34:27.489417Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"developmenttwo"}},"created_at":"2022-01-04T19:34:24.300809Z","modified_at":"2022-01-04T19:34:27.489417Z","templates":[]}]}' - recorded_at: Tue, 04 Jan 2022 19:34:28 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","id":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","name":"default","description":"Default + environment, base for all environments.","parent":null,"children":["https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/"],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.112161Z","modified_at":"2022-06-02T17:13:09.641786Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","id":"8f2e37b9-b429-4987-bb85-abd24bd67274","name":"development","description":"Development + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.123839Z","modified_at":"2022-06-02T17:11:55.123839Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","id":"0663ac09-5883-452b-bc1a-00e3347fece5","name":"production","description":"Production + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.145580Z","modified_at":"2022-06-02T17:11:55.145580Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/","id":"fc970cc2-c24f-427d-9c7a-70acde9f1b64","name":"staging","description":"Staging + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.134547Z","modified_at":"2022-06-02T17:11:55.134547Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:30:52 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76 + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 15:30:53 GMT + Content-Type: + - application/json + Content-Length: + - '3371' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=lpi7F2ZYrS99iCXzs2ITjXqWKuy5A9cFBFibdFJO6EfifBs1+wMKyhYHZE7hgEFxZSkQO0faUpfmdr08hLgCUq9aQHTg0WWdsExp8Y32C2bb1opMvSfIHKdtWGoI; + Expires=Fri, 14 Oct 2022 15:30:52 GMT; Path=/ + - AWSALBCORS=lpi7F2ZYrS99iCXzs2ITjXqWKuy5A9cFBFibdFJO6EfifBs1+wMKyhYHZE7hgEFxZSkQO0faUpfmdr08hLgCUq9aQHTg0WWdsExp8Y32C2bb1opMvSfIHKdtWGoI; + Expires=Fri, 14 Oct 2022 15:30:52 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=17nwJwpM9MLGnoWxUBOPvsExHv0neZ2NoJOyQN588MuAfOd3qu1khDO0mmIUuxnD58531eO1o3URVZcrDeipJg4+1aBiwufGeAECGwDoZxSJ8NWqMFQy12BrS4EeXoKp6jpO46/BpTdrhQ/M5JAJ4Nb+Yo+vQ14KWBpvAmHhyUTN; + Expires=Fri, 14 Oct 2022 15:30:52 GMT; Path=/ + - AWSALBTGCORS=17nwJwpM9MLGnoWxUBOPvsExHv0neZ2NoJOyQN588MuAfOd3qu1khDO0mmIUuxnD58531eO1o3URVZcrDeipJg4+1aBiwufGeAECGwDoZxSJ8NWqMFQy12BrS4EeXoKp6jpO46/BpTdrhQ/M5JAJ4Nb+Yo+vQ14KWBpvAmHhyUTN; + Expires=Fri, 14 Oct 2022 15:30:52 GMT; Path=/; SameSite=None; Secure + - csrftoken=m3vsCRLpN8ClmZwKts7APIK0PfMjH2s7lO3M0Q5y1xYNXY3SqQCVd4YI9w3AiW8M; + expires=Fri, 06 Oct 2023 15:30:53 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=9d2ndnfe2tyufrjhbjptnjdkfg4tkeqz; expires=Fri, 21 Oct 2022 15:30:53 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/17545473-ccca-4a47-ab40-7e6ad5c381b9/","id":"17545473-ccca-4a47-ab40-7e6ad5c381b9","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":{"url":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/17545473-ccca-4a47-ab40-7e6ad5c381b9/values/5cd84f14-023e-4757-8810-9f9e95c7d84a/","id":"5cd84f14-023e-4757-8810-9f9e95c7d84a","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/17545473-ccca-4a47-ab40-7e6ad5c381b9/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"defaultone","interpolated":false,"value":"defaultone","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:30:44.021152Z","modified_at":"2022-10-07T15:30:44.021152Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaultone"}},"overrides":null,"created_at":"2022-10-07T15:30:39.690561Z","modified_at":"2022-10-07T15:30:39.690561Z","templates":[]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/c724c5f1-cc84-4bce-82c2-63e036c02562/","id":"c724c5f1-cc84-4bce-82c2-63e036c02562","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":{"url":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/c724c5f1-cc84-4bce-82c2-63e036c02562/values/d3ef1079-241c-45a1-a101-89a1d8a4cca0/","id":"d3ef1079-241c-45a1-a101-89a1d8a4cca0","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/c724c5f1-cc84-4bce-82c2-63e036c02562/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"defaulttwo","interpolated":false,"value":"defaulttwo","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:30:47.607319Z","modified_at":"2022-10-07T15:30:47.607319Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaulttwo"}},"overrides":null,"created_at":"2022-10-07T15:30:41.406030Z","modified_at":"2022-10-07T15:30:41.406030Z","templates":[]}]}' + recorded_at: Fri, 07 Oct 2022 15:30:53 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 15:30:55 GMT + Content-Type: + - application/json + Content-Length: + - '805' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=yITlnspqNA5lXCfLelWxLKRwKLuPlEuzpnox10Ne6KuQKT9mwvW5BuvST3PEa4w33vTGO4QhRZqw/t3ChY09tW0yGuqrYwt8fx0PkVrab0Dm5VmK3LDzsToAmiQu; + Expires=Fri, 14 Oct 2022 15:30:54 GMT; Path=/ + - AWSALBCORS=yITlnspqNA5lXCfLelWxLKRwKLuPlEuzpnox10Ne6KuQKT9mwvW5BuvST3PEa4w33vTGO4QhRZqw/t3ChY09tW0yGuqrYwt8fx0PkVrab0Dm5VmK3LDzsToAmiQu; + Expires=Fri, 14 Oct 2022 15:30:54 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=COU0oh1axN2yLSON9VCKDZO+WZys73A0NMBuWhRL3ZvzARIwQpH7NbaiNIpY+uOdU+Dbgxd9LD0Q0bBGcaHDVolB1Xpckf+UvyOk1yfsxkGhoA8EldBw55fCEXgZ4c2Oa4fh9GBPuGq98AsI1gwKzYQr4j/s1wcNJHM9FBAdhTmV; + Expires=Fri, 14 Oct 2022 15:30:54 GMT; Path=/ + - AWSALBTGCORS=COU0oh1axN2yLSON9VCKDZO+WZys73A0NMBuWhRL3ZvzARIwQpH7NbaiNIpY+uOdU+Dbgxd9LD0Q0bBGcaHDVolB1Xpckf+UvyOk1yfsxkGhoA8EldBw55fCEXgZ4c2Oa4fh9GBPuGq98AsI1gwKzYQr4j/s1wcNJHM9FBAdhTmV; + Expires=Fri, 14 Oct 2022 15:30:54 GMT; Path=/; SameSite=None; Secure + - csrftoken=io8OpDUwitNyoPPl6mWBr5cRMpNAE4Io9Ud6oeldfxNNgM07ojiCM3mVk3pjECpN; + expires=Fri, 06 Oct 2023 15:30:55 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=uzc5jggy192f1xd8y6t8qpqoj50lr2br; expires=Fri, 21 Oct 2022 15:30:55 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/","id":"25d1e833-a351-458e-ab6f-cb09ae6bc20d","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:30:36.977702Z","modified_at":"2022-10-07T15:30:36.977702Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:30:55 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/environments/ + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 15:30:56 GMT + Content-Type: + - application/json + Content-Length: + - '2085' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=oI3mLTrSQtwucT0K8wq6TzIbvcTKn0ApRjuhcMTJYX636GYkPlvY7EI90jtrtpFzzJCGJ8IKGbKbNxGSxXw0bJs4QKggPj3qImG7bKe/sWrmEtq2j1DrjyWF0VIX; + Expires=Fri, 14 Oct 2022 15:30:55 GMT; Path=/ + - AWSALBCORS=oI3mLTrSQtwucT0K8wq6TzIbvcTKn0ApRjuhcMTJYX636GYkPlvY7EI90jtrtpFzzJCGJ8IKGbKbNxGSxXw0bJs4QKggPj3qImG7bKe/sWrmEtq2j1DrjyWF0VIX; + Expires=Fri, 14 Oct 2022 15:30:55 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=mjJK1nyIAPX0Au75YDzU/AXFlHblJJU/0pPDFo26IFCgUBd/tmKDbSI+C3m3A2Z7h9r3DV3CjqNkt1Cy8NtFLYvlqRv5u4+gbsD5pxhbmAwho0eMT3W1TASWUtZXDz2i+qqpMzV5utUypdRKXy9L41u3eOu3ry2d4WT8CdZOaONJ; + Expires=Fri, 14 Oct 2022 15:30:55 GMT; Path=/ + - AWSALBTGCORS=mjJK1nyIAPX0Au75YDzU/AXFlHblJJU/0pPDFo26IFCgUBd/tmKDbSI+C3m3A2Z7h9r3DV3CjqNkt1Cy8NtFLYvlqRv5u4+gbsD5pxhbmAwho0eMT3W1TASWUtZXDz2i+qqpMzV5utUypdRKXy9L41u3eOu3ry2d4WT8CdZOaONJ; + Expires=Fri, 14 Oct 2022 15:30:55 GMT; Path=/; SameSite=None; Secure + - csrftoken=uoQtt9fl8farlzO79bDSnbDyOI54RK9AhfFWRGZkDeOwdvaCHheGjYkPOO92jPU6; + expires=Fri, 06 Oct 2023 15:30:56 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=syrsr61i772zx4kwqtlsxjwcbviynclt; expires=Fri, 21 Oct 2022 15:30:56 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","id":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","name":"default","description":"Default + environment, base for all environments.","parent":null,"children":["https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/"],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.112161Z","modified_at":"2022-06-02T17:13:09.641786Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","id":"8f2e37b9-b429-4987-bb85-abd24bd67274","name":"development","description":"Development + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.123839Z","modified_at":"2022-06-02T17:11:55.123839Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","id":"0663ac09-5883-452b-bc1a-00e3347fece5","name":"production","description":"Production + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.145580Z","modified_at":"2022-06-02T17:11:55.145580Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/","id":"fc970cc2-c24f-427d-9c7a-70acde9f1b64","name":"staging","description":"Staging + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.134547Z","modified_at":"2022-06-02T17:11:55.134547Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:30:56 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/?environment=8f2e37b9-b429-4987-bb85-abd24bd67274 + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 15:30:58 GMT + Content-Type: + - application/json + Content-Length: + - '3403' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=AL9miW67qKasjGqlhdtWF8ot8l2Ov9F8DAm3kt+Tf1awomHpd/ZSuoauJeeJ6N6srDGwyUQZM1MF/xD36O3LX12jBiTnHfGQxgM6mj0SxSNStpMJHhsAOfI5Ojv5; + Expires=Fri, 14 Oct 2022 15:30:57 GMT; Path=/ + - AWSALBCORS=AL9miW67qKasjGqlhdtWF8ot8l2Ov9F8DAm3kt+Tf1awomHpd/ZSuoauJeeJ6N6srDGwyUQZM1MF/xD36O3LX12jBiTnHfGQxgM6mj0SxSNStpMJHhsAOfI5Ojv5; + Expires=Fri, 14 Oct 2022 15:30:57 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=UC4OMHnu248qZODcvn1K55NzL38wtiwm2a5TcaGbY48cswjaDfeBBwtZWHM2SmHbNsRpbnEYDO5YkCPnkVVGLg0PprOmrVGOTxd5LvQGO+CNDLqCl9+SrO/E0rlDQjWjy/sdyAKEMXyTke9RaPIWSLlY+FCUBfuP4i76edeRhYli; + Expires=Fri, 14 Oct 2022 15:30:57 GMT; Path=/ + - AWSALBTGCORS=UC4OMHnu248qZODcvn1K55NzL38wtiwm2a5TcaGbY48cswjaDfeBBwtZWHM2SmHbNsRpbnEYDO5YkCPnkVVGLg0PprOmrVGOTxd5LvQGO+CNDLqCl9+SrO/E0rlDQjWjy/sdyAKEMXyTke9RaPIWSLlY+FCUBfuP4i76edeRhYli; + Expires=Fri, 14 Oct 2022 15:30:57 GMT; Path=/; SameSite=None; Secure + - csrftoken=xtGQyd01PQ6r30tHhaDuqCUcVGdf1QVVroXLArCebbMT0eXo6XBzeQTBw9JtYPe5; + expires=Fri, 06 Oct 2023 15:30:58 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=mzclzxsvy8qtnyrlj3q4p17oa54fj2hb; expires=Fri, 21 Oct 2022 15:30:58 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/17545473-ccca-4a47-ab40-7e6ad5c381b9/","id":"17545473-ccca-4a47-ab40-7e6ad5c381b9","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":{"url":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/17545473-ccca-4a47-ab40-7e6ad5c381b9/values/d72165c5-32c1-430d-a29d-b38e7e41a9f6/","id":"d72165c5-32c1-430d-a29d-b38e7e41a9f6","environment":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","environment_name":"development","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/17545473-ccca-4a47-ab40-7e6ad5c381b9/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"developmentone","interpolated":false,"value":"developmentone","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:30:45.731023Z","modified_at":"2022-10-07T15:30:45.731023Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"developmentone"}},"overrides":null,"created_at":"2022-10-07T15:30:39.690561Z","modified_at":"2022-10-07T15:30:39.690561Z","templates":[]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/c724c5f1-cc84-4bce-82c2-63e036c02562/","id":"c724c5f1-cc84-4bce-82c2-63e036c02562","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":{"url":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/c724c5f1-cc84-4bce-82c2-63e036c02562/values/94cae9b2-97fe-4e71-b733-8a1f195f48e4/","id":"94cae9b2-97fe-4e71-b733-8a1f195f48e4","environment":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","environment_name":"development","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/parameters/c724c5f1-cc84-4bce-82c2-63e036c02562/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"developmenttwo","interpolated":false,"value":"developmenttwo","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:30:49.497827Z","modified_at":"2022-10-07T15:30:49.497827Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"developmenttwo"}},"overrides":null,"created_at":"2022-10-07T15:30:41.406030Z","modified_at":"2022-10-07T15:30:41.406030Z","templates":[]}]}' + recorded_at: Fri, 07 Oct 2022 15:30:58 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_project_id/gets_id.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_project_id/gets_id.yml index ade6103..0f702f7 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_project_id/gets_id.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_project_id/gets_id.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -10,7 +10,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -23,25 +23,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:38:16 GMT + - Fri, 07 Oct 2022 15:25:25 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=+26lCsXkPU5UZGDkqGcm2mTGpYpjO18ny/BRljTcdRQ02enhorj8A+D4YAdoN9ebeo+Z68E/hzcQT6duTBahw9TagLrn5BBAL0MnfPYPLJV5/5BkwQ9y+Xm8eFZM; - Expires=Tue, 11 Jan 2022 17:38:16 GMT; Path=/ - - AWSALBCORS=+26lCsXkPU5UZGDkqGcm2mTGpYpjO18ny/BRljTcdRQ02enhorj8A+D4YAdoN9ebeo+Z68E/hzcQT6duTBahw9TagLrn5BBAL0MnfPYPLJV5/5BkwQ9y+Xm8eFZM; - Expires=Tue, 11 Jan 2022 17:38:16 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=NXfrQbi++UrvPlQ1Xv5QPASfUJeL/J2z+50ee7cR1YAHdfD+Zvaqpr7wjLVe1stNUObk27+hSoVV/TyuFxmaRD3nRUcRmAUr7ZoElBI4/0y3cwTnTc56qKwzP1+y+y29nsSqjjzKddHUr7F3mDAwYv8LZfMfNqUoA6qtTsS/78Nz; - Expires=Tue, 11 Jan 2022 17:38:16 GMT; Path=/ - - AWSALBTGCORS=NXfrQbi++UrvPlQ1Xv5QPASfUJeL/J2z+50ee7cR1YAHdfD+Zvaqpr7wjLVe1stNUObk27+hSoVV/TyuFxmaRD3nRUcRmAUr7ZoElBI4/0y3cwTnTc56qKwzP1+y+y29nsSqjjzKddHUr7F3mDAwYv8LZfMfNqUoA6qtTsS/78Nz; - Expires=Tue, 11 Jan 2022 17:38:16 GMT; Path=/; SameSite=None; Secure - - csrftoken=J25YxPLu10qd6myGwups7OkRdroIHcYV7vldeSALQih8Sew8tgLJ5aUbGzc5HW57; - expires=Tue, 03 Jan 2023 17:38:16 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=6aw2pbx71ubct6fse4012i01m4ptssvt; expires=Tue, 18 Jan 2022 17:38:16 + - AWSALB=EaVbNmMhd2Oh3joNzJ2r+VIP/tP1xh/KQ5W9fE4p9odnqeXyEev8/YQeho1RIs/8t8I3jNqrok1ZqJNa3fkO5i8aPYoUYd/J4nD9kYyMAl1kFIXp4G5GyTt6hDKJ; + Expires=Fri, 14 Oct 2022 15:25:24 GMT; Path=/ + - AWSALBCORS=EaVbNmMhd2Oh3joNzJ2r+VIP/tP1xh/KQ5W9fE4p9odnqeXyEev8/YQeho1RIs/8t8I3jNqrok1ZqJNa3fkO5i8aPYoUYd/J4nD9kYyMAl1kFIXp4G5GyTt6hDKJ; + Expires=Fri, 14 Oct 2022 15:25:24 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=fyssD63tnr32ZLOvzL+eQjhckGmgTPpnYug7Wg+3PFF8Mf+R+9F+UVtZawzyRMjl2LEzCRScbPerlIHduw692iOLy2xhdQuTJ0dzXDiHyf0Yu8RpBY0WwzBFDnFS+iBKhPip+x6Nl0ZRZF1zn2+bAX1KYpxFpilUzv2Me+MviUG4; + Expires=Fri, 14 Oct 2022 15:25:24 GMT; Path=/ + - AWSALBTGCORS=fyssD63tnr32ZLOvzL+eQjhckGmgTPpnYug7Wg+3PFF8Mf+R+9F+UVtZawzyRMjl2LEzCRScbPerlIHduw692iOLy2xhdQuTJ0dzXDiHyf0Yu8RpBY0WwzBFDnFS+iBKhPip+x6Nl0ZRZF1zn2+bAX1KYpxFpilUzv2Me+MviUG4; + Expires=Fri, 14 Oct 2022 15:25:24 GMT; Path=/; SameSite=None; Secure + - csrftoken=iAit9DXe07SvDY09folJCcKG4N1VX881A8FEH4C7XX0wa5OQLJbY3ueDLk0g9h1p; + expires=Fri, 06 Oct 2023 15:25:25 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=1olmd7j0k3libzoulf9kldmeekdzyehw; expires=Fri, 21 Oct 2022 15:25:25 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -59,23 +59,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/c33aa2f3-f20e-48e1-97fa-126cee70b924/","id":"c33aa2f3-f20e-48e1-97fa-126cee70b924","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:38:14.069320Z","modified_at":"2022-01-04T17:38:15.834458Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:38:16 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/3d5c5263-dc2b-4cb4-b71a-7e820a822556/","id":"3d5c5263-dc2b-4cb4-b71a-7e820a822556","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:25:19.057799Z","modified_at":"2022-10-07T15:25:19.057799Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:25:25 GMT - request: method: delete - uri: https://api.cloudtruth.io/api/v1/projects/c33aa2f3-f20e-48e1-97fa-126cee70b924/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/3d5c5263-dc2b-4cb4-b71a-7e820a822556/ body: encoding: US-ASCII string: '' @@ -83,7 +72,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Authorization: - Api-Key Accept-Encoding: @@ -96,23 +85,23 @@ http_interactions: message: No Content headers: Date: - - Tue, 04 Jan 2022 17:38:17 GMT + - Fri, 07 Oct 2022 15:25:27 GMT Content-Length: - '0' Connection: - keep-alive Set-Cookie: - - AWSALB=sGXfe52+9oRcDOJF/qPHG7wELVU7l9Gc9IWSdk4+9MV+SlXmAmQ/AdlYpA50UHUHa4d2+2s98g7q/bKwNtkv8/TnWs6UACSJnu7lMOrlkBXgF6meSLXIu0bi+hju; - Expires=Tue, 11 Jan 2022 17:38:16 GMT; Path=/ - - AWSALBCORS=sGXfe52+9oRcDOJF/qPHG7wELVU7l9Gc9IWSdk4+9MV+SlXmAmQ/AdlYpA50UHUHa4d2+2s98g7q/bKwNtkv8/TnWs6UACSJnu7lMOrlkBXgF6meSLXIu0bi+hju; - Expires=Tue, 11 Jan 2022 17:38:16 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=uGZRtrMmC+FY/PVLXbDh7dk7/qBWrovLp6O3CN2dqSnxcOsVttcNF5zcjfzUeo/EK/mW492Ant9wbv5nAGNitaNQXCV39s7rw8sVJ8KidaLxWWwuKM6UYcIQRdL7dLyW1xa5rspQgGD32VG4+RFBbSEkTadckuW75MLSYsBtn4qq; - Expires=Tue, 11 Jan 2022 17:38:16 GMT; Path=/ - - AWSALBTGCORS=uGZRtrMmC+FY/PVLXbDh7dk7/qBWrovLp6O3CN2dqSnxcOsVttcNF5zcjfzUeo/EK/mW492Ant9wbv5nAGNitaNQXCV39s7rw8sVJ8KidaLxWWwuKM6UYcIQRdL7dLyW1xa5rspQgGD32VG4+RFBbSEkTadckuW75MLSYsBtn4qq; - Expires=Tue, 11 Jan 2022 17:38:16 GMT; Path=/; SameSite=None; Secure - - csrftoken=9gR6k3mbP89i3vBzT96GGspFFxcWxwNUF6mRNP2FN3JMvg9v5tZDe1Gj9uNlUHGd; - expires=Tue, 03 Jan 2023 17:38:17 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=d8fhu412aqhwnv4f1p8on12xzstpj4u9; expires=Tue, 18 Jan 2022 17:38:17 + - AWSALB=PsTGvXw03/pHkcPcSRK734v9eafrVQ8/KwUzgprkRbfdyxIjbuI8HgE/SaT4CKgwjtyeyPvr7z9r9UFRUpas8o43q+iCnVCyJahw4IgrAFfcpwapS18Izg15qm4k; + Expires=Fri, 14 Oct 2022 15:25:25 GMT; Path=/ + - AWSALBCORS=PsTGvXw03/pHkcPcSRK734v9eafrVQ8/KwUzgprkRbfdyxIjbuI8HgE/SaT4CKgwjtyeyPvr7z9r9UFRUpas8o43q+iCnVCyJahw4IgrAFfcpwapS18Izg15qm4k; + Expires=Fri, 14 Oct 2022 15:25:25 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=J2N7SRQIb1RXWGbFz+D1wy1mj6CMS1NBhec1r6KQIdPUKhlP2lBmMJ14kiFqMfAI+fNyovQW/XF0ROIvHgKjELMbPsF1smp7fS98fP00cs1WnTpCpWfabTeJ/yZTP7jg4Ogb5pkLX/Yeh8X/r3BeXEGQ0ujP565S4zSwXVBr2hwt; + Expires=Fri, 14 Oct 2022 15:25:25 GMT; Path=/ + - AWSALBTGCORS=J2N7SRQIb1RXWGbFz+D1wy1mj6CMS1NBhec1r6KQIdPUKhlP2lBmMJ14kiFqMfAI+fNyovQW/XF0ROIvHgKjELMbPsF1smp7fS98fP00cs1WnTpCpWfabTeJ/yZTP7jg4Ogb5pkLX/Yeh8X/r3BeXEGQ0ujP565S4zSwXVBr2hwt; + Expires=Fri, 14 Oct 2022 15:25:25 GMT; Path=/; SameSite=None; Secure + - csrftoken=ABNijyJYLwm1cqFSNrMaIv8lRZMbMeScBXrTwS5r2CU2eaC3yln4Dt3q2gy0BxD0; + expires=Fri, 06 Oct 2023 15:25:27 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=tfsrp4inov1jew5zcsbff1mh75czbxku; expires=Fri, 21 Oct 2022 15:25:27 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -131,10 +120,10 @@ http_interactions: body: encoding: UTF-8 string: '' - recorded_at: Tue, 04 Jan 2022 17:38:17 GMT + recorded_at: Fri, 07 Oct 2022 15:25:27 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: UTF-8 string: '{"name":"TestProject"}' @@ -142,7 +131,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -155,30 +144,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:38:17 GMT + - Fri, 07 Oct 2022 15:25:29 GMT Content-Type: - application/json Content-Length: - - '304' + - '365' Connection: - keep-alive Set-Cookie: - - AWSALB=Ezr1ZICCT2Rh92h7yUdUT4sPqw6oexDxqdsUv8J15Ligzu5ZyMivAGGeL7LIv9C5Yg6Rr6qM+UXfTgCnjORgdrAphpG1Ia+O8BLgBfy1qV4O9t5xhp55jf0nSVlR; - Expires=Tue, 11 Jan 2022 17:38:17 GMT; Path=/ - - AWSALBCORS=Ezr1ZICCT2Rh92h7yUdUT4sPqw6oexDxqdsUv8J15Ligzu5ZyMivAGGeL7LIv9C5Yg6Rr6qM+UXfTgCnjORgdrAphpG1Ia+O8BLgBfy1qV4O9t5xhp55jf0nSVlR; - Expires=Tue, 11 Jan 2022 17:38:17 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=Xphnp96Tagq4pfv+GvVm/2leFYdJbXgCN4tZyRu/fxDLWGnK1ZenVwSDTgmU6jgVjGxt6szlsBxuoeVNd21k8Sf1awXu1je2y12XkmHUAeaAFhVxCitQVAuu3/MAwuOu0B3x3WLhFWHD1FxYKAHZo+fdsoPcnnI5zvB7W0BzZ/Ik; - Expires=Tue, 11 Jan 2022 17:38:17 GMT; Path=/ - - AWSALBTGCORS=Xphnp96Tagq4pfv+GvVm/2leFYdJbXgCN4tZyRu/fxDLWGnK1ZenVwSDTgmU6jgVjGxt6szlsBxuoeVNd21k8Sf1awXu1je2y12XkmHUAeaAFhVxCitQVAuu3/MAwuOu0B3x3WLhFWHD1FxYKAHZo+fdsoPcnnI5zvB7W0BzZ/Ik; - Expires=Tue, 11 Jan 2022 17:38:17 GMT; Path=/; SameSite=None; Secure - - csrftoken=ddcDtV1RL5ugbwA8b3H8AOTcZDwBCKvdT5Ik71WZcJlnAOhMJx61fptbiYYJXdX1; - expires=Tue, 03 Jan 2023 17:38:17 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=o50d6pvrxqqu4iiqzl78c6clgt6e2wkk; expires=Tue, 18 Jan 2022 17:38:17 + - AWSALB=7saqeGftdIhHpCV+qzin1voPGt17sl4Xu9c9EJHDPQMhQtKpxKJxR8SvWcY1gI+mxutvfvCKAjv+qo8BzW9IpOior3Vpp89a68awwiDHjsVns3eOwCutiCGLZxH3; + Expires=Fri, 14 Oct 2022 15:25:27 GMT; Path=/ + - AWSALBCORS=7saqeGftdIhHpCV+qzin1voPGt17sl4Xu9c9EJHDPQMhQtKpxKJxR8SvWcY1gI+mxutvfvCKAjv+qo8BzW9IpOior3Vpp89a68awwiDHjsVns3eOwCutiCGLZxH3; + Expires=Fri, 14 Oct 2022 15:25:27 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=xuA6r6RCJo8AgfnuwExIFQSKMVgpe+/lTm7xB3UZPKZ315ct6bagCgtpxE/Ipu4dn0ft4lGBx6KbL80tQKD62vQbD6B74Doga/abu2Cct8Mdcoy2Ufj3HN0JfTNzX0ubA/3VwnOtIY9c2huRpyVBuQsuRQfDyDLkowMgsRrPRaWi; + Expires=Fri, 14 Oct 2022 15:25:27 GMT; Path=/ + - AWSALBTGCORS=xuA6r6RCJo8AgfnuwExIFQSKMVgpe+/lTm7xB3UZPKZ315ct6bagCgtpxE/Ipu4dn0ft4lGBx6KbL80tQKD62vQbD6B74Doga/abu2Cct8Mdcoy2Ufj3HN0JfTNzX0ubA/3VwnOtIY9c2huRpyVBuQsuRQfDyDLkowMgsRrPRaWi; + Expires=Fri, 14 Oct 2022 15:25:27 GMT; Path=/; SameSite=None; Secure + - csrftoken=9zvGYdskODHldtjdH8hzc7uXMBM42vgJdHghosNoHRTr7N6gDcLMg42GF5SHnVoY; + expires=Fri, 06 Oct 2023 15:25:29 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ayzkrglmfu426bmvpzxu0ld7qdpim2nn; expires=Fri, 21 Oct 2022 15:25:29 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/6799f498-e7e9-4fff-bc14-c109dae134a8/ + - https://api.staging.cloudtruth.io/api/v1/projects/36ebb5a7-99ad-4187-b400-5997e3f72c83/ Vary: - Accept, Cookie, Origin Allow: @@ -193,11 +182,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/6799f498-e7e9-4fff-bc14-c109dae134a8/","id":"6799f498-e7e9-4fff-bc14-c109dae134a8","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:38:17.740508Z","modified_at":"2022-01-04T17:38:17.740508Z"}' - recorded_at: Tue, 04 Jan 2022 17:38:17 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/36ebb5a7-99ad-4187-b400-5997e3f72c83/","id":"36ebb5a7-99ad-4187-b400-5997e3f72c83","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:25:29.515991Z","modified_at":"2022-10-07T15:25:29.515991Z"}' + recorded_at: Fri, 07 Oct 2022 15:25:29 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -205,7 +194,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -218,25 +207,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:38:18 GMT + - Fri, 07 Oct 2022 15:25:31 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=WEjN5jmcVwB9rF2E7WKpCoer/1SjfBd2ODqCr5rm74QOljCmXSYWpVo4csWc/5RsahZzHwHYDB4aIlK+8vj4zsC5PNhMXjD9ptrWPZWLLGBpqlRJfr1pDxdw4Sto; - Expires=Tue, 11 Jan 2022 17:38:17 GMT; Path=/ - - AWSALBCORS=WEjN5jmcVwB9rF2E7WKpCoer/1SjfBd2ODqCr5rm74QOljCmXSYWpVo4csWc/5RsahZzHwHYDB4aIlK+8vj4zsC5PNhMXjD9ptrWPZWLLGBpqlRJfr1pDxdw4Sto; - Expires=Tue, 11 Jan 2022 17:38:17 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=nNASMjG+egqv0d0OjqMHRwR/zXIM0fYDlVWKGEVS85Tov0Uy8Pr48ZULH2hjN/l1YwTec/1OZktSemRmkLWXwdzUzfmyh/S/CfsBHf5MbvvAJFGB9MNSB7RL50HBXgHT1V5Sdwj3IZff7LEaVFXWiXAEXsW/GX6MSrcQM0W3AaL2; - Expires=Tue, 11 Jan 2022 17:38:17 GMT; Path=/ - - AWSALBTGCORS=nNASMjG+egqv0d0OjqMHRwR/zXIM0fYDlVWKGEVS85Tov0Uy8Pr48ZULH2hjN/l1YwTec/1OZktSemRmkLWXwdzUzfmyh/S/CfsBHf5MbvvAJFGB9MNSB7RL50HBXgHT1V5Sdwj3IZff7LEaVFXWiXAEXsW/GX6MSrcQM0W3AaL2; - Expires=Tue, 11 Jan 2022 17:38:17 GMT; Path=/; SameSite=None; Secure - - csrftoken=b7jaBO2Q4Ig8Omcza1XCYShxx10ENBLHAbaspWBv27DciGMrwdjSkjmPcX0AQRno; - expires=Tue, 03 Jan 2023 17:38:18 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=7dt1ewt40gqq92cukzves4gfq0xhoghd; expires=Tue, 18 Jan 2022 17:38:18 + - AWSALB=d7h5arI6hcjx/FjUIn/StIer2csNFD+UoWlPB3iXaRjyt3z1wugc3xgq1RChs6j432j6HJB9LowFThCmff12KqTH+4nr77q6ulszcpPt7ykiVOZHsSO6JS4DeUXc; + Expires=Fri, 14 Oct 2022 15:25:29 GMT; Path=/ + - AWSALBCORS=d7h5arI6hcjx/FjUIn/StIer2csNFD+UoWlPB3iXaRjyt3z1wugc3xgq1RChs6j432j6HJB9LowFThCmff12KqTH+4nr77q6ulszcpPt7ykiVOZHsSO6JS4DeUXc; + Expires=Fri, 14 Oct 2022 15:25:29 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=JmtTRXLQ799ETSC3XY1xpp3Cz9iXxd76khnI9/7yeLjKuEVQCdYHxQY2UchlLD2blQH066LSEH7yrFxVvFS+8aQQLbIzVrMpeQC4K7GpBxESGM1YYmaDGm7WaN9nRE80l9GhNb9WSTZ5t++A1aNQn/GE5QfCMmEk7VS81w101vz/; + Expires=Fri, 14 Oct 2022 15:25:29 GMT; Path=/ + - AWSALBTGCORS=JmtTRXLQ799ETSC3XY1xpp3Cz9iXxd76khnI9/7yeLjKuEVQCdYHxQY2UchlLD2blQH066LSEH7yrFxVvFS+8aQQLbIzVrMpeQC4K7GpBxESGM1YYmaDGm7WaN9nRE80l9GhNb9WSTZ5t++A1aNQn/GE5QfCMmEk7VS81w101vz/; + Expires=Fri, 14 Oct 2022 15:25:29 GMT; Path=/; SameSite=None; Secure + - csrftoken=WceRMhskuTE4t1CBFJWabsxdgUd3tqTYgdxIkRRPFn3RIrWoJE0NGnAkNDMVYqYF; + expires=Fri, 06 Oct 2023 15:25:31 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=q55qvd8z93hwga626uf5id9doy5h3x9e; expires=Fri, 21 Oct 2022 15:25:31 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -254,23 +243,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/6799f498-e7e9-4fff-bc14-c109dae134a8/","id":"6799f498-e7e9-4fff-bc14-c109dae134a8","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:38:17.740508Z","modified_at":"2022-01-04T17:38:17.740508Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:38:18 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/36ebb5a7-99ad-4187-b400-5997e3f72c83/","id":"36ebb5a7-99ad-4187-b400-5997e3f72c83","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:25:29.515991Z","modified_at":"2022-10-07T15:25:29.515991Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:25:31 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/6799f498-e7e9-4fff-bc14-c109dae134a8/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/36ebb5a7-99ad-4187-b400-5997e3f72c83/parameters/ body: encoding: UTF-8 string: '{"name":"one","type":"string"}' @@ -278,7 +256,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -291,30 +269,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:38:18 GMT + - Fri, 07 Oct 2022 15:25:33 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=9S5ZHX/iEfRKOtCnW1FFIVjTu5jGD0lWrXx3LYpMuL8DVx2y4JJcYXc7XwDzJAnMeFpU7HSKbNyw1BG0NwQnt6qmMUjvVKjyCLsii024g1p7NZ+lcrmWeF56ivMc; - Expires=Tue, 11 Jan 2022 17:38:18 GMT; Path=/ - - AWSALBCORS=9S5ZHX/iEfRKOtCnW1FFIVjTu5jGD0lWrXx3LYpMuL8DVx2y4JJcYXc7XwDzJAnMeFpU7HSKbNyw1BG0NwQnt6qmMUjvVKjyCLsii024g1p7NZ+lcrmWeF56ivMc; - Expires=Tue, 11 Jan 2022 17:38:18 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=S9J13hK3APjzW8DW6edKhE5peqz6MHPw8TZGoPlZdXHeivOUh8/BrYlS5QdgrFaTIy2XEK8S/twmUKu10tzO3qeHMpPLA85iexOYdtmAR+R0KeIgjOsyo1MK9nT89RltR6sOLMGm7t315Qoheeu6TXs1M+PzqT+e9wmLodIgMbIP; - Expires=Tue, 11 Jan 2022 17:38:18 GMT; Path=/ - - AWSALBTGCORS=S9J13hK3APjzW8DW6edKhE5peqz6MHPw8TZGoPlZdXHeivOUh8/BrYlS5QdgrFaTIy2XEK8S/twmUKu10tzO3qeHMpPLA85iexOYdtmAR+R0KeIgjOsyo1MK9nT89RltR6sOLMGm7t315Qoheeu6TXs1M+PzqT+e9wmLodIgMbIP; - Expires=Tue, 11 Jan 2022 17:38:18 GMT; Path=/; SameSite=None; Secure - - csrftoken=PF3PIa88vwPAOhDbuQlPt7YMvR95kWeY5lwtb8rWdbMh40HftwTtxSl66di5CRyg; - expires=Tue, 03 Jan 2023 17:38:18 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=u2h2rhphbuznd2ayqo4h5268lcsokmg4; expires=Tue, 18 Jan 2022 17:38:18 + - AWSALB=K5qeReYrbbVvd/0TxbU1rkGv9wL6hSsyMC5djxFLSVyf9ULqLX8gWgNHtlihD3q2SrFWstY+mrpITrPKYwF1g3FzxyQWIb0A7qB5Zg3ra/kympRt74ZrBiMwfGoo; + Expires=Fri, 14 Oct 2022 15:25:31 GMT; Path=/ + - AWSALBCORS=K5qeReYrbbVvd/0TxbU1rkGv9wL6hSsyMC5djxFLSVyf9ULqLX8gWgNHtlihD3q2SrFWstY+mrpITrPKYwF1g3FzxyQWIb0A7qB5Zg3ra/kympRt74ZrBiMwfGoo; + Expires=Fri, 14 Oct 2022 15:25:31 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=tonuwZS5ASsQ7S9MnNnFm5471Es/e50BvYg0QlRwPCCjtZ1u5PHod02Bb1W3lwy4gS7/DSvVvJnA/pX5WpwPNadno5PuLQD/hxr/xjfsBEF/hWF+yiTh2n0ln2BOmRgHV7ougbW3W40ByhHb3bqncbB3DXLOhLBq+RCHQoAv5/x9; + Expires=Fri, 14 Oct 2022 15:25:31 GMT; Path=/ + - AWSALBTGCORS=tonuwZS5ASsQ7S9MnNnFm5471Es/e50BvYg0QlRwPCCjtZ1u5PHod02Bb1W3lwy4gS7/DSvVvJnA/pX5WpwPNadno5PuLQD/hxr/xjfsBEF/hWF+yiTh2n0ln2BOmRgHV7ougbW3W40ByhHb3bqncbB3DXLOhLBq+RCHQoAv5/x9; + Expires=Fri, 14 Oct 2022 15:25:31 GMT; Path=/; SameSite=None; Secure + - csrftoken=h0Vx4FrNu9E5xi48mfw06y9Hzt1IIbl7XE1nGfw70jhh9NOWfV6W3n556qrV9bOK; + expires=Fri, 06 Oct 2023 15:25:33 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=2xb8t9u7smv5c1yjlflc4v9r2x3tche9; expires=Fri, 21 Oct 2022 15:25:33 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/6799f498-e7e9-4fff-bc14-c109dae134a8/parameters/ee3452fa-2bfa-4c2e-982b-02beea5e1295/ + - https://api.staging.cloudtruth.io/api/v1/projects/36ebb5a7-99ad-4187-b400-5997e3f72c83/parameters/231295c1-8e92-4d03-99d0-75d249d73cc6/ Vary: - Accept, Cookie, Origin Allow: @@ -329,11 +307,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/6799f498-e7e9-4fff-bc14-c109dae134a8/parameters/ee3452fa-2bfa-4c2e-982b-02beea5e1295/","id":"ee3452fa-2bfa-4c2e-982b-02beea5e1295","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/6799f498-e7e9-4fff-bc14-c109dae134a8/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T17:38:18.822840Z","modified_at":"2022-01-04T17:38:18.822840Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 17:38:18 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/36ebb5a7-99ad-4187-b400-5997e3f72c83/parameters/231295c1-8e92-4d03-99d0-75d249d73cc6/","id":"231295c1-8e92-4d03-99d0-75d249d73cc6","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/36ebb5a7-99ad-4187-b400-5997e3f72c83/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:25:33.267569Z","modified_at":"2022-10-07T15:25:33.267569Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:25:33 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/6799f498-e7e9-4fff-bc14-c109dae134a8/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/36ebb5a7-99ad-4187-b400-5997e3f72c83/parameters/ body: encoding: UTF-8 string: '{"name":"two","type":"string"}' @@ -341,7 +319,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -354,30 +332,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:38:19 GMT + - Fri, 07 Oct 2022 15:25:35 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=vP82KaRdSeKtfwlewGJLFzcnskNKr6OZ8hLaA/jtcnrwluHbaZTZOoUstMf18eB0ru5yAaPNecngyQ3TlF/fvLl7EcDI+IOq72mBaeOwf2i9pmF5jxTmm1qVwZ0W; - Expires=Tue, 11 Jan 2022 17:38:19 GMT; Path=/ - - AWSALBCORS=vP82KaRdSeKtfwlewGJLFzcnskNKr6OZ8hLaA/jtcnrwluHbaZTZOoUstMf18eB0ru5yAaPNecngyQ3TlF/fvLl7EcDI+IOq72mBaeOwf2i9pmF5jxTmm1qVwZ0W; - Expires=Tue, 11 Jan 2022 17:38:19 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=8GiGIgce+NdlG3NHBymvCq7oWXluWVwU/FIlh+cjVnatiiAMITKwfVtPO/MJXnbiN3/HgXhpvLcntzudZiUBCloTdk20tTBf7opkXv6FnesjPaCEfurJm+uIeGfWKuxufNUjU4DxJDqezKReKBEW/4v8rncowgMigb/9XjZAsauY; - Expires=Tue, 11 Jan 2022 17:38:19 GMT; Path=/ - - AWSALBTGCORS=8GiGIgce+NdlG3NHBymvCq7oWXluWVwU/FIlh+cjVnatiiAMITKwfVtPO/MJXnbiN3/HgXhpvLcntzudZiUBCloTdk20tTBf7opkXv6FnesjPaCEfurJm+uIeGfWKuxufNUjU4DxJDqezKReKBEW/4v8rncowgMigb/9XjZAsauY; - Expires=Tue, 11 Jan 2022 17:38:19 GMT; Path=/; SameSite=None; Secure - - csrftoken=FAMmXSG0zWibQtBJIu7dQZuvDBzPh81DAKfelTuLK0KZmGRatUdMnY1iZYNMGKdH; - expires=Tue, 03 Jan 2023 17:38:19 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=fo5cslwbzjl05v7w0ltzzzfq4vuf40f8; expires=Tue, 18 Jan 2022 17:38:19 + - AWSALB=65bdBWTrsdlkovnScjN4vc1NCe9+9A4ywZi3Kqc1gPsH/eoVGxPCqY8F29JyOr7hqMCLJxyqBCaZ1Sg5R6NhXHimwV/7KEOI8Z5kbNi+0xZxK6s3QNX7//Y4S1Zf; + Expires=Fri, 14 Oct 2022 15:25:33 GMT; Path=/ + - AWSALBCORS=65bdBWTrsdlkovnScjN4vc1NCe9+9A4ywZi3Kqc1gPsH/eoVGxPCqY8F29JyOr7hqMCLJxyqBCaZ1Sg5R6NhXHimwV/7KEOI8Z5kbNi+0xZxK6s3QNX7//Y4S1Zf; + Expires=Fri, 14 Oct 2022 15:25:33 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=tNGPhfRwEtNPcH1fpTmE1fBrjSJNFcGGzXmaXxAr/aGcapo/rJ8bUr2Mm88AHyx0pfdIaXK7ZSYT2FyEOBR6261Tb90GA22E0kGglDjw3MrpdwEt3byCwRV0XsiIjv0RsJmyJxl30l1FcW6k8A9TaPyaeHUTJx1y85GKW5IPNnMB; + Expires=Fri, 14 Oct 2022 15:25:33 GMT; Path=/ + - AWSALBTGCORS=tNGPhfRwEtNPcH1fpTmE1fBrjSJNFcGGzXmaXxAr/aGcapo/rJ8bUr2Mm88AHyx0pfdIaXK7ZSYT2FyEOBR6261Tb90GA22E0kGglDjw3MrpdwEt3byCwRV0XsiIjv0RsJmyJxl30l1FcW6k8A9TaPyaeHUTJx1y85GKW5IPNnMB; + Expires=Fri, 14 Oct 2022 15:25:33 GMT; Path=/; SameSite=None; Secure + - csrftoken=cajN186TxsezWsd9IiRTPJEV1ZUyzYHDnezYCZqqUJ6uEMUJPZjzJdM29haTuOm6; + expires=Fri, 06 Oct 2023 15:25:35 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=er2zeko50xzk89r44gi1i0fe5er2y6o7; expires=Fri, 21 Oct 2022 15:25:35 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/6799f498-e7e9-4fff-bc14-c109dae134a8/parameters/6fa993f4-6974-4a7c-b9c8-37e7cfe139a5/ + - https://api.staging.cloudtruth.io/api/v1/projects/36ebb5a7-99ad-4187-b400-5997e3f72c83/parameters/4f885fa8-41d9-492a-85ba-47b3d163fddd/ Vary: - Accept, Cookie, Origin Allow: @@ -392,6 +370,6 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/6799f498-e7e9-4fff-bc14-c109dae134a8/parameters/6fa993f4-6974-4a7c-b9c8-37e7cfe139a5/","id":"6fa993f4-6974-4a7c-b9c8-37e7cfe139a5","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/6799f498-e7e9-4fff-bc14-c109dae134a8/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T17:38:19.433072Z","modified_at":"2022-01-04T17:38:19.433072Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 17:38:19 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/36ebb5a7-99ad-4187-b400-5997e3f72c83/parameters/4f885fa8-41d9-492a-85ba-47b3d163fddd/","id":"4f885fa8-41d9-492a-85ba-47b3d163fddd","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/36ebb5a7-99ad-4187-b400-5997e3f72c83/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:25:35.114812Z","modified_at":"2022-10-07T15:25:35.114812Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:25:35 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_project_id/raises_if_project_doesn_t_exist.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_project_id/raises_if_project_doesn_t_exist.yml index c4f9635..3ff61c5 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_project_id/raises_if_project_doesn_t_exist.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_project_id/raises_if_project_doesn_t_exist.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -10,7 +10,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -23,25 +23,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:38:20 GMT + - Fri, 07 Oct 2022 15:25:36 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=n6jSQqdFsHmTlEMreQxQttqSL19lR8AAS3Yyq0at4MaGxQXnhBg9VflPPGbY9vnZaTgMnl74HLuwYdevlrBmQTLz7PHcZ+zo9kKwP1iaVSBb6HjLQMfC9YC54jcq; - Expires=Tue, 11 Jan 2022 17:38:19 GMT; Path=/ - - AWSALBCORS=n6jSQqdFsHmTlEMreQxQttqSL19lR8AAS3Yyq0at4MaGxQXnhBg9VflPPGbY9vnZaTgMnl74HLuwYdevlrBmQTLz7PHcZ+zo9kKwP1iaVSBb6HjLQMfC9YC54jcq; - Expires=Tue, 11 Jan 2022 17:38:19 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=rsJPezHSrMlbtL1lKO29YtjLrbNsR1rqg9rYzINc5EatkGK88L81/m97TRRmiqzirAaNUT2pwxi3OPRCV7bsiuvkCO6ZXkQpCLzvTMC/CqepVnfZS+jj+5JVNyaLzpVD2i4yBzrUiB0uLkFWBV8y8MqOVBhKUtnbriCqCDz3mivc; - Expires=Tue, 11 Jan 2022 17:38:19 GMT; Path=/ - - AWSALBTGCORS=rsJPezHSrMlbtL1lKO29YtjLrbNsR1rqg9rYzINc5EatkGK88L81/m97TRRmiqzirAaNUT2pwxi3OPRCV7bsiuvkCO6ZXkQpCLzvTMC/CqepVnfZS+jj+5JVNyaLzpVD2i4yBzrUiB0uLkFWBV8y8MqOVBhKUtnbriCqCDz3mivc; - Expires=Tue, 11 Jan 2022 17:38:19 GMT; Path=/; SameSite=None; Secure - - csrftoken=f7zB3OLwIEpUYRrGRbpTDOgukkjinRw1OQYWWJsA4wDaCMjpDCkQiyOfpX7A8rwx; - expires=Tue, 03 Jan 2023 17:38:20 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=st3vmahhbsfh657b9i29ov85drv5kkar; expires=Tue, 18 Jan 2022 17:38:20 + - AWSALB=RofuoydEYKthXPKJpNA7pf/0P2mSd+6QnbjKVKkXUul7LlHpoKZ1kyLdLQA1exlkz1rbplEXvfp6jtd66ON5o5IH4vuTg7Gw8A9mFjkJXEMn1a1cI4ayybxzt92V; + Expires=Fri, 14 Oct 2022 15:25:35 GMT; Path=/ + - AWSALBCORS=RofuoydEYKthXPKJpNA7pf/0P2mSd+6QnbjKVKkXUul7LlHpoKZ1kyLdLQA1exlkz1rbplEXvfp6jtd66ON5o5IH4vuTg7Gw8A9mFjkJXEMn1a1cI4ayybxzt92V; + Expires=Fri, 14 Oct 2022 15:25:35 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=I+twCNWrobi+YDElkIiQnGYRNjHQMbnwy72Vu0D2Wsbsjwhw/H9tX6JHbgei1eI6kZR30Po7d42YPM9MDCK3FixcT5FQcZXBLCyubkTNlOmuBsFnSRoYEF4yTgOdi0slx4UMcDRDoVlbgLHIa+K8eRIoNMPvs+FgytqAbA1cxNVr; + Expires=Fri, 14 Oct 2022 15:25:35 GMT; Path=/ + - AWSALBTGCORS=I+twCNWrobi+YDElkIiQnGYRNjHQMbnwy72Vu0D2Wsbsjwhw/H9tX6JHbgei1eI6kZR30Po7d42YPM9MDCK3FixcT5FQcZXBLCyubkTNlOmuBsFnSRoYEF4yTgOdi0slx4UMcDRDoVlbgLHIa+K8eRIoNMPvs+FgytqAbA1cxNVr; + Expires=Fri, 14 Oct 2022 15:25:35 GMT; Path=/; SameSite=None; Secure + - csrftoken=HjpPZFKXtZXPwWFFflLJy0LhucL4kX5umikgn1JSZwqbhTc85Jkd11dWmmIz9Yk6; + expires=Fri, 06 Oct 2023 15:25:36 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=07hwloju0yc78jb7lq900ha4xhf6opt8; expires=Fri, 21 Oct 2022 15:25:36 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -59,23 +59,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/6799f498-e7e9-4fff-bc14-c109dae134a8/","id":"6799f498-e7e9-4fff-bc14-c109dae134a8","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:38:17.740508Z","modified_at":"2022-01-04T17:38:19.433072Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:38:20 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/36ebb5a7-99ad-4187-b400-5997e3f72c83/","id":"36ebb5a7-99ad-4187-b400-5997e3f72c83","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:25:29.515991Z","modified_at":"2022-10-07T15:25:29.515991Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:25:36 GMT - request: method: delete - uri: https://api.cloudtruth.io/api/v1/projects/6799f498-e7e9-4fff-bc14-c109dae134a8/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/36ebb5a7-99ad-4187-b400-5997e3f72c83/ body: encoding: US-ASCII string: '' @@ -83,7 +72,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Authorization: - Api-Key Accept-Encoding: @@ -96,23 +85,23 @@ http_interactions: message: No Content headers: Date: - - Tue, 04 Jan 2022 17:38:20 GMT + - Fri, 07 Oct 2022 15:25:38 GMT Content-Length: - '0' Connection: - keep-alive Set-Cookie: - - AWSALB=lDek/GZk6Q5dFfDlJQaIppMLYbM/Ta5ciJYuvp8S5ssN8TczrvrOh9paCuV/0DoORQuiErP6FqCZ6iibWLjkmOvgSdF3dOkIhzFudmbTXhIzwPpSp/xur5Q8kdK1; - Expires=Tue, 11 Jan 2022 17:38:20 GMT; Path=/ - - AWSALBCORS=lDek/GZk6Q5dFfDlJQaIppMLYbM/Ta5ciJYuvp8S5ssN8TczrvrOh9paCuV/0DoORQuiErP6FqCZ6iibWLjkmOvgSdF3dOkIhzFudmbTXhIzwPpSp/xur5Q8kdK1; - Expires=Tue, 11 Jan 2022 17:38:20 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=4FR+wbDdX4x/MnesNLQBtLEkhD3teG4MJBfuPT3SF95djIY+pUD0sOI6LGFjDN+SuSrBA5+N48PDg9NSlPRWgCDy8aOoMLMEGyZwm/dmbiCdt+KeLW8+Dtfk5yEB1dOf4A/0lSVHxR1HYO1q72ukCyYgNl+bvx/Zs+aFdwePxMPP; - Expires=Tue, 11 Jan 2022 17:38:20 GMT; Path=/ - - AWSALBTGCORS=4FR+wbDdX4x/MnesNLQBtLEkhD3teG4MJBfuPT3SF95djIY+pUD0sOI6LGFjDN+SuSrBA5+N48PDg9NSlPRWgCDy8aOoMLMEGyZwm/dmbiCdt+KeLW8+Dtfk5yEB1dOf4A/0lSVHxR1HYO1q72ukCyYgNl+bvx/Zs+aFdwePxMPP; - Expires=Tue, 11 Jan 2022 17:38:20 GMT; Path=/; SameSite=None; Secure - - csrftoken=FFE3AuwNvDOVfvkivw8zxW8T19J4Sjxc2cVAmP8ShDrQ8HjDg8X9wUtsk07cj7vd; - expires=Tue, 03 Jan 2023 17:38:20 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=bzoqjxgip3wue6bzcv479b9524v9hj6p; expires=Tue, 18 Jan 2022 17:38:20 + - AWSALB=u5b7/ktqKDFGfShgtBn7bp9W4XnxXuzZ4DnIVfk0PwMznK/WSko+o+lKzt6oigT8E+Me5wEzBiN+vAgB/nV9w8SqbFzuLRr7rAHy5hMgirFAuGmn6Fkcvov4hwrE; + Expires=Fri, 14 Oct 2022 15:25:36 GMT; Path=/ + - AWSALBCORS=u5b7/ktqKDFGfShgtBn7bp9W4XnxXuzZ4DnIVfk0PwMznK/WSko+o+lKzt6oigT8E+Me5wEzBiN+vAgB/nV9w8SqbFzuLRr7rAHy5hMgirFAuGmn6Fkcvov4hwrE; + Expires=Fri, 14 Oct 2022 15:25:36 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=r7hdL1XWfC+AwwiMwAmMD+qTKM3ZMKmAivIh0uopmyMd5DbGxY2iK9/j7ZDAyiSXq93+kNY1XnmJaEygqkmDdyodAw0AEOKuGjUV0sNMqr14r1YGsnG2D9zuv1QRJjQrIkazO1+culP5fxyxfQnLk5e+/hScoRPLuK386OHgzoyN; + Expires=Fri, 14 Oct 2022 15:25:36 GMT; Path=/ + - AWSALBTGCORS=r7hdL1XWfC+AwwiMwAmMD+qTKM3ZMKmAivIh0uopmyMd5DbGxY2iK9/j7ZDAyiSXq93+kNY1XnmJaEygqkmDdyodAw0AEOKuGjUV0sNMqr14r1YGsnG2D9zuv1QRJjQrIkazO1+culP5fxyxfQnLk5e+/hScoRPLuK386OHgzoyN; + Expires=Fri, 14 Oct 2022 15:25:36 GMT; Path=/; SameSite=None; Secure + - csrftoken=W6w33lL94cxVa19jAtAnFw2NJ7HkHxoyGfH1ngPl5GVEp9Y2iOjhBh6eQQw1yJDg; + expires=Fri, 06 Oct 2023 15:25:38 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=5w6wmkhlwg65zr2g91s4pxnvsa3w69d8; expires=Fri, 21 Oct 2022 15:25:38 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -131,10 +120,10 @@ http_interactions: body: encoding: UTF-8 string: '' - recorded_at: Tue, 04 Jan 2022 17:38:20 GMT + recorded_at: Fri, 07 Oct 2022 15:25:38 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: UTF-8 string: '{"name":"TestProject"}' @@ -142,7 +131,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -155,30 +144,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:38:21 GMT + - Fri, 07 Oct 2022 15:25:40 GMT Content-Type: - application/json Content-Length: - - '304' + - '365' Connection: - keep-alive Set-Cookie: - - AWSALB=PJr3pRb/HdJGcUmHN907YDo7DuvyNHJuFW7Ixv1OAZA+4rje0Afw1Q3XNEzyU1GqTy8Lq03NTXvHIw4fJ0veK+XJE6xIvdenAH2kFu4AY6WKq6ytwWQpbU7waGJc; - Expires=Tue, 11 Jan 2022 17:38:20 GMT; Path=/ - - AWSALBCORS=PJr3pRb/HdJGcUmHN907YDo7DuvyNHJuFW7Ixv1OAZA+4rje0Afw1Q3XNEzyU1GqTy8Lq03NTXvHIw4fJ0veK+XJE6xIvdenAH2kFu4AY6WKq6ytwWQpbU7waGJc; - Expires=Tue, 11 Jan 2022 17:38:20 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=EZcgnY0rc4DmBlLQ5Y3/voZSmc9ZRSapnB03JajdDYf5Cvr9XFw3Z8SfVfmjYP23ARDTD+1xrlfAp72wCM/F5A/qH6AXzX/suktZEzxQEzaOota/qB0w0Y5v1jC71uAMcMamzCtnbR76ENf8BSmFarD9iyEx7nQXSaQO4nS0bF2t; - Expires=Tue, 11 Jan 2022 17:38:20 GMT; Path=/ - - AWSALBTGCORS=EZcgnY0rc4DmBlLQ5Y3/voZSmc9ZRSapnB03JajdDYf5Cvr9XFw3Z8SfVfmjYP23ARDTD+1xrlfAp72wCM/F5A/qH6AXzX/suktZEzxQEzaOota/qB0w0Y5v1jC71uAMcMamzCtnbR76ENf8BSmFarD9iyEx7nQXSaQO4nS0bF2t; - Expires=Tue, 11 Jan 2022 17:38:20 GMT; Path=/; SameSite=None; Secure - - csrftoken=BnUSNTdGcEO4wSu77nmmQ5IelEdSkEH7avs3ANu8DgKG4i70f2a73Ey7Z6n4zYLZ; - expires=Tue, 03 Jan 2023 17:38:21 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=xy5za3dy7on5oz3pb65m8ovyz3e8p9w7; expires=Tue, 18 Jan 2022 17:38:21 + - AWSALB=albfDoLDTzbdLVQJoj57hoxK6lpU1KMisWBuWa1OD2NvKgwyNDu82EyVeckiqKuzFUyuQ0O4m+wlbPl4KHLaNoI7fawUIxsOzLhT5QGcS6vE3AKmEXlsMvqNDENT; + Expires=Fri, 14 Oct 2022 15:25:38 GMT; Path=/ + - AWSALBCORS=albfDoLDTzbdLVQJoj57hoxK6lpU1KMisWBuWa1OD2NvKgwyNDu82EyVeckiqKuzFUyuQ0O4m+wlbPl4KHLaNoI7fawUIxsOzLhT5QGcS6vE3AKmEXlsMvqNDENT; + Expires=Fri, 14 Oct 2022 15:25:38 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=AuCrVFYI8Io2dopry47bQJSZMVY5evHGeEZqRvWfB9lDYVqbVPACq3K3hqkEne5O3WSZaZ3pPyogQ0a3bmupL/8kSW9NNOWfcjBjv6g/a9xn9GSNNNp6v+I3/r7N+DiVc0SKSwrm1snQzibUyJs8+rN0S7J2+2v3AgXbKaXULaUO; + Expires=Fri, 14 Oct 2022 15:25:38 GMT; Path=/ + - AWSALBTGCORS=AuCrVFYI8Io2dopry47bQJSZMVY5evHGeEZqRvWfB9lDYVqbVPACq3K3hqkEne5O3WSZaZ3pPyogQ0a3bmupL/8kSW9NNOWfcjBjv6g/a9xn9GSNNNp6v+I3/r7N+DiVc0SKSwrm1snQzibUyJs8+rN0S7J2+2v3AgXbKaXULaUO; + Expires=Fri, 14 Oct 2022 15:25:38 GMT; Path=/; SameSite=None; Secure + - csrftoken=aMY715C8dHSHDAHaf61S4RlfyQFag54JtDQ5loRvxvnAidepA3vhxEWSQ97WaRbO; + expires=Fri, 06 Oct 2023 15:25:40 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=2f7efh7vwhkwx440p6umeqlhzkcqu6q4; expires=Fri, 21 Oct 2022 15:25:40 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/5aa0c933-7a50-470c-85b5-e9a1421e9506/ + - https://api.staging.cloudtruth.io/api/v1/projects/baa6ed4b-747e-4b4c-89f7-414d1b9fd64f/ Vary: - Accept, Cookie, Origin Allow: @@ -193,11 +182,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/5aa0c933-7a50-470c-85b5-e9a1421e9506/","id":"5aa0c933-7a50-470c-85b5-e9a1421e9506","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:38:21.124049Z","modified_at":"2022-01-04T17:38:21.124049Z"}' - recorded_at: Tue, 04 Jan 2022 17:38:21 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/baa6ed4b-747e-4b4c-89f7-414d1b9fd64f/","id":"baa6ed4b-747e-4b4c-89f7-414d1b9fd64f","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:25:40.572384Z","modified_at":"2022-10-07T15:25:40.572384Z"}' + recorded_at: Fri, 07 Oct 2022 15:25:40 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -205,7 +194,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -218,25 +207,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:38:21 GMT + - Fri, 07 Oct 2022 15:25:42 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=1oDzmb1hYZEcb0AxYb4c1t1Tq6bZOsxByUwXvPjwg4eYcf5zDVTG3D500FTCYFJjX1/p5UVNdxBFROJxCKeYpyUCOO0H8HRiCBWKTsJRJok/B6NmVT72yr5jl0ly; - Expires=Tue, 11 Jan 2022 17:38:21 GMT; Path=/ - - AWSALBCORS=1oDzmb1hYZEcb0AxYb4c1t1Tq6bZOsxByUwXvPjwg4eYcf5zDVTG3D500FTCYFJjX1/p5UVNdxBFROJxCKeYpyUCOO0H8HRiCBWKTsJRJok/B6NmVT72yr5jl0ly; - Expires=Tue, 11 Jan 2022 17:38:21 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=5/70cefSI2KiJM8GhkvxhZ4HHRIIgefmhkUYYiQctbB5oR1RhxvbXIgyazm1yjkGMEQjnpDanxhwL3DecPaS+BIp+Fg/kmnqeamTFVoU08Z6TcKscsuaV+6rY1QABjVoUkjSTUGQcKSMuwv22TahsQR+wBCY9NL7POW+20FrWbqy; - Expires=Tue, 11 Jan 2022 17:38:21 GMT; Path=/ - - AWSALBTGCORS=5/70cefSI2KiJM8GhkvxhZ4HHRIIgefmhkUYYiQctbB5oR1RhxvbXIgyazm1yjkGMEQjnpDanxhwL3DecPaS+BIp+Fg/kmnqeamTFVoU08Z6TcKscsuaV+6rY1QABjVoUkjSTUGQcKSMuwv22TahsQR+wBCY9NL7POW+20FrWbqy; - Expires=Tue, 11 Jan 2022 17:38:21 GMT; Path=/; SameSite=None; Secure - - csrftoken=qKvRH3wMV6mHDZHjLrIqWGZI4gdfYgEzg5GDEjHUC7ENkgFvUMGbdoSMympjoQrb; - expires=Tue, 03 Jan 2023 17:38:21 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=lwiue7m5ne18s4tkczv96qeut4gvs4xs; expires=Tue, 18 Jan 2022 17:38:21 + - AWSALB=fT6ax+pjxKoZHfD6DB9pARLZSugehZq6HPXy6wnlCRRpIEp4Payi9hYLnnmQnJDekl1ATxqmsvesAqw1fwrEr7OnWNZOo/GYlizCpZtun2JiD+lalNOAtwuc6eF4; + Expires=Fri, 14 Oct 2022 15:25:40 GMT; Path=/ + - AWSALBCORS=fT6ax+pjxKoZHfD6DB9pARLZSugehZq6HPXy6wnlCRRpIEp4Payi9hYLnnmQnJDekl1ATxqmsvesAqw1fwrEr7OnWNZOo/GYlizCpZtun2JiD+lalNOAtwuc6eF4; + Expires=Fri, 14 Oct 2022 15:25:40 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=GW+GkIp0HZzOStvnUKoewdrO1xhbkiLMul7Gm/qm/b3n66VE2NySh+mYgGmmtf+buiQmMMRoFZJ99XKy627jRs7/7+Oc7GOgFIzTyNbxvFaFNbjZS+3u7dT95U17DKn54QYCtJuUvQSo8SVUIKctzoOdYWVs0+PdUqeGuIXoOZ2w; + Expires=Fri, 14 Oct 2022 15:25:40 GMT; Path=/ + - AWSALBTGCORS=GW+GkIp0HZzOStvnUKoewdrO1xhbkiLMul7Gm/qm/b3n66VE2NySh+mYgGmmtf+buiQmMMRoFZJ99XKy627jRs7/7+Oc7GOgFIzTyNbxvFaFNbjZS+3u7dT95U17DKn54QYCtJuUvQSo8SVUIKctzoOdYWVs0+PdUqeGuIXoOZ2w; + Expires=Fri, 14 Oct 2022 15:25:40 GMT; Path=/; SameSite=None; Secure + - csrftoken=xn5vkORvllzOWdK0cqFGBu6dvyHQDo2CTGreJxBGRwgfwBpmJw6UfQ76eBgd9dIC; + expires=Fri, 06 Oct 2023 15:25:42 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=anngojfz6bhs0x8o8rtwvb1d5fwu05jx; expires=Fri, 21 Oct 2022 15:25:42 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -254,23 +243,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5aa0c933-7a50-470c-85b5-e9a1421e9506/","id":"5aa0c933-7a50-470c-85b5-e9a1421e9506","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:38:21.124049Z","modified_at":"2022-01-04T17:38:21.124049Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:38:21 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/baa6ed4b-747e-4b4c-89f7-414d1b9fd64f/","id":"baa6ed4b-747e-4b4c-89f7-414d1b9fd64f","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:25:40.572384Z","modified_at":"2022-10-07T15:25:40.572384Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:25:42 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/5aa0c933-7a50-470c-85b5-e9a1421e9506/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/baa6ed4b-747e-4b4c-89f7-414d1b9fd64f/parameters/ body: encoding: UTF-8 string: '{"name":"one","type":"string"}' @@ -278,7 +256,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -291,30 +269,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:38:22 GMT + - Fri, 07 Oct 2022 15:25:43 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=7SQ9nearlmzlAvLLxEfSFl0GDj+e7l9JdygYNFf9ObnehNAM2mf/DsIoseKeEflL63kYI47VtKLGZHiDVVFWu0KpIMLCYIsldmth+YQOXBPmeRrI0GXsQlqJBsP6; - Expires=Tue, 11 Jan 2022 17:38:21 GMT; Path=/ - - AWSALBCORS=7SQ9nearlmzlAvLLxEfSFl0GDj+e7l9JdygYNFf9ObnehNAM2mf/DsIoseKeEflL63kYI47VtKLGZHiDVVFWu0KpIMLCYIsldmth+YQOXBPmeRrI0GXsQlqJBsP6; - Expires=Tue, 11 Jan 2022 17:38:21 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=JPz1mf36MC92UXmoFxiJ/ODjXTMANmP+KmcArVDYmRdeAwaHuTryKlxadWBUkBdhYvIom9iwlDMeK157H51Pnkga9CSC1KyuGUy+l7vyPp96zO5GCi/yGiOpt9kkDDgOm4FzutUVOZUOht6khJT8jjy3hmyBCG+m5lKDbhpI1Yg/; - Expires=Tue, 11 Jan 2022 17:38:21 GMT; Path=/ - - AWSALBTGCORS=JPz1mf36MC92UXmoFxiJ/ODjXTMANmP+KmcArVDYmRdeAwaHuTryKlxadWBUkBdhYvIom9iwlDMeK157H51Pnkga9CSC1KyuGUy+l7vyPp96zO5GCi/yGiOpt9kkDDgOm4FzutUVOZUOht6khJT8jjy3hmyBCG+m5lKDbhpI1Yg/; - Expires=Tue, 11 Jan 2022 17:38:21 GMT; Path=/; SameSite=None; Secure - - csrftoken=dFemylkF0gSm0dvGILotEfN5Burz1PK6WnUr5lfGsCl1VBu4eWBQEttX8x9z0uej; - expires=Tue, 03 Jan 2023 17:38:22 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=8crttjjghiz5pezidfce572nrbm42f4f; expires=Tue, 18 Jan 2022 17:38:22 + - AWSALB=uqYCLwaG6OHXLNQkeKztMJZeTxh/53bkrDnR0qrJOeONGIXlLF5n72mycb69VnG9rdLUWUaihAJaeiyTblFVIUybTmzkXLFC0XsvRGF5ucWYDfaD1mz0DRDxhh9G; + Expires=Fri, 14 Oct 2022 15:25:42 GMT; Path=/ + - AWSALBCORS=uqYCLwaG6OHXLNQkeKztMJZeTxh/53bkrDnR0qrJOeONGIXlLF5n72mycb69VnG9rdLUWUaihAJaeiyTblFVIUybTmzkXLFC0XsvRGF5ucWYDfaD1mz0DRDxhh9G; + Expires=Fri, 14 Oct 2022 15:25:42 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=+RqiKaQvwN5ym2pu5B7IzPKqT+F9WDQBTBjkRxS50KPdJr+BGiAXtOuSoEXQi+OWKnwjb430sZTdeS2X5VOG+NEvnINVam/3qldLuabp5soc8+TigNcec9A4ja7nj5x6XjwWfYV5IN9DL3tBxqp7kc5gcUJlDWry3g8+X1ZzLYQl; + Expires=Fri, 14 Oct 2022 15:25:42 GMT; Path=/ + - AWSALBTGCORS=+RqiKaQvwN5ym2pu5B7IzPKqT+F9WDQBTBjkRxS50KPdJr+BGiAXtOuSoEXQi+OWKnwjb430sZTdeS2X5VOG+NEvnINVam/3qldLuabp5soc8+TigNcec9A4ja7nj5x6XjwWfYV5IN9DL3tBxqp7kc5gcUJlDWry3g8+X1ZzLYQl; + Expires=Fri, 14 Oct 2022 15:25:42 GMT; Path=/; SameSite=None; Secure + - csrftoken=lPuFjIGWKbu7pnOp4pQA8zqRvtqR1K9tJUGBmVQ4vQ3kzGjuEfDFVfx9scdLiPBK; + expires=Fri, 06 Oct 2023 15:25:43 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ozenxfxg34f01gwj04ainz9uvf0u4usn; expires=Fri, 21 Oct 2022 15:25:43 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/5aa0c933-7a50-470c-85b5-e9a1421e9506/parameters/b4d7d74b-b8bc-4ade-b53d-7e0c0285142e/ + - https://api.staging.cloudtruth.io/api/v1/projects/baa6ed4b-747e-4b4c-89f7-414d1b9fd64f/parameters/54f7734b-5204-4980-aab4-6e6cff3d56e5/ Vary: - Accept, Cookie, Origin Allow: @@ -329,11 +307,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/5aa0c933-7a50-470c-85b5-e9a1421e9506/parameters/b4d7d74b-b8bc-4ade-b53d-7e0c0285142e/","id":"b4d7d74b-b8bc-4ade-b53d-7e0c0285142e","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/5aa0c933-7a50-470c-85b5-e9a1421e9506/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T17:38:22.268823Z","modified_at":"2022-01-04T17:38:22.268823Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 17:38:22 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/baa6ed4b-747e-4b4c-89f7-414d1b9fd64f/parameters/54f7734b-5204-4980-aab4-6e6cff3d56e5/","id":"54f7734b-5204-4980-aab4-6e6cff3d56e5","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/baa6ed4b-747e-4b4c-89f7-414d1b9fd64f/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:25:43.873230Z","modified_at":"2022-10-07T15:25:43.873230Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:25:43 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/5aa0c933-7a50-470c-85b5-e9a1421e9506/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/baa6ed4b-747e-4b4c-89f7-414d1b9fd64f/parameters/ body: encoding: UTF-8 string: '{"name":"two","type":"string"}' @@ -341,7 +319,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -354,30 +332,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:38:23 GMT + - Fri, 07 Oct 2022 15:25:45 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=uo4tn5u4xOjSqHtFS5gZh7RbFffo9kxnaoSH6mAnqGcBDh+96QytL9r173oYKHG3LM80TGRW+mxMGxmHCc8+uC+sIYJfyoLQijXNYzzX8gQ/hkMdbVSXr4Q/8V3C; - Expires=Tue, 11 Jan 2022 17:38:22 GMT; Path=/ - - AWSALBCORS=uo4tn5u4xOjSqHtFS5gZh7RbFffo9kxnaoSH6mAnqGcBDh+96QytL9r173oYKHG3LM80TGRW+mxMGxmHCc8+uC+sIYJfyoLQijXNYzzX8gQ/hkMdbVSXr4Q/8V3C; - Expires=Tue, 11 Jan 2022 17:38:22 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=NxJNB1GWQxTF++XrkoXJdSGEiOtawHnvQfBAN0k29H7BV8UdWYXR5PuwKhO5TvOJG0E0dU+LToVz0ZxjbxJaZlOoCH/2Ilnz+qEeyDWzZqnCeza9s7ovmvU8NyAwpKiGQ3cJOGPROyAFPIzX5lSgyQlA/M159Per44VTsHUDgdE0; - Expires=Tue, 11 Jan 2022 17:38:22 GMT; Path=/ - - AWSALBTGCORS=NxJNB1GWQxTF++XrkoXJdSGEiOtawHnvQfBAN0k29H7BV8UdWYXR5PuwKhO5TvOJG0E0dU+LToVz0ZxjbxJaZlOoCH/2Ilnz+qEeyDWzZqnCeza9s7ovmvU8NyAwpKiGQ3cJOGPROyAFPIzX5lSgyQlA/M159Per44VTsHUDgdE0; - Expires=Tue, 11 Jan 2022 17:38:22 GMT; Path=/; SameSite=None; Secure - - csrftoken=z0JZx53ZRl9OnLAE9nIJ93DN278v5rI7RrvKtEzqn5gNZBPXRvlZUHHPm8zGkisl; - expires=Tue, 03 Jan 2023 17:38:23 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=2q5n2g48xntjclwcyrdxjh47fk6j4a16; expires=Tue, 18 Jan 2022 17:38:23 + - AWSALB=Fy4/Yx85kLgZY7Z/jZKgWh3o4PnXbJ/5GQ0lezN5edfdl2ehkoBFEuxxnG76hKGm51bZGZPNCDGBi+Pr+J2BSj6kLmx8hEx/nGHflgRG7dbc4j0rVYeazxtvk0/D; + Expires=Fri, 14 Oct 2022 15:25:44 GMT; Path=/ + - AWSALBCORS=Fy4/Yx85kLgZY7Z/jZKgWh3o4PnXbJ/5GQ0lezN5edfdl2ehkoBFEuxxnG76hKGm51bZGZPNCDGBi+Pr+J2BSj6kLmx8hEx/nGHflgRG7dbc4j0rVYeazxtvk0/D; + Expires=Fri, 14 Oct 2022 15:25:44 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=DD/wjagjJGWMCVRCp3Gt1Uld+CUCev7kjAAVPrjaZMNouQAHLooj/mH4RIS7DdJbbE7hSta5Ev1rpdAJGYPFbYHUn/MDzsBfIKFdKq3YuH75tBTb+mxESkZ80jjNMOZbXuSoAdQXdDSDiivi5LGZbMDqBFRZD62xUfj5gzUz4644; + Expires=Fri, 14 Oct 2022 15:25:44 GMT; Path=/ + - AWSALBTGCORS=DD/wjagjJGWMCVRCp3Gt1Uld+CUCev7kjAAVPrjaZMNouQAHLooj/mH4RIS7DdJbbE7hSta5Ev1rpdAJGYPFbYHUn/MDzsBfIKFdKq3YuH75tBTb+mxESkZ80jjNMOZbXuSoAdQXdDSDiivi5LGZbMDqBFRZD62xUfj5gzUz4644; + Expires=Fri, 14 Oct 2022 15:25:44 GMT; Path=/; SameSite=None; Secure + - csrftoken=L4WAT1PjU5p9nhqP0Tu16CmSajlgkRALXSNjHkjnzrUYZIQj5KJoonIybJJXk4CT; + expires=Fri, 06 Oct 2023 15:25:45 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=d4wvvhkvy8jsdvsfv8jle55l4k2mj0tg; expires=Fri, 21 Oct 2022 15:25:45 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/5aa0c933-7a50-470c-85b5-e9a1421e9506/parameters/019133bc-d343-4743-b0b0-2552771a10be/ + - https://api.staging.cloudtruth.io/api/v1/projects/baa6ed4b-747e-4b4c-89f7-414d1b9fd64f/parameters/deca40f5-73fc-4cf4-8d1e-8a3ab1da8b67/ Vary: - Accept, Cookie, Origin Allow: @@ -392,6 +370,6 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/5aa0c933-7a50-470c-85b5-e9a1421e9506/parameters/019133bc-d343-4743-b0b0-2552771a10be/","id":"019133bc-d343-4743-b0b0-2552771a10be","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/5aa0c933-7a50-470c-85b5-e9a1421e9506/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T17:38:22.945413Z","modified_at":"2022-01-04T17:38:22.945413Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 17:38:23 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/baa6ed4b-747e-4b4c-89f7-414d1b9fd64f/parameters/deca40f5-73fc-4cf4-8d1e-8a3ab1da8b67/","id":"deca40f5-73fc-4cf4-8d1e-8a3ab1da8b67","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/baa6ed4b-747e-4b4c-89f7-414d1b9fd64f/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:25:45.486152Z","modified_at":"2022-10-07T15:25:45.486152Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:25:45 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_projects/gets_projects.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_projects/gets_projects.yml index 26b40ec..6e7965f 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_projects/gets_projects.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_projects/gets_projects.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -10,7 +10,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -23,25 +23,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:38:09 GMT + - Fri, 07 Oct 2022 15:25:07 GMT Content-Type: - application/json Content-Length: - - '7795' + - '439' Connection: - keep-alive Set-Cookie: - - AWSALB=WnU2SnKiL1XeB4+Ktx/Ti1UZyjU/uRZMrDGAS/UdjsrWNhZmJdYp71hZmVLGwCvqKl0OITHWUdeojtbdgC70KzseX3zRrH1A4G50my0M2LRbDFHUyNvCvRl2LTTH; - Expires=Tue, 11 Jan 2022 17:38:09 GMT; Path=/ - - AWSALBCORS=WnU2SnKiL1XeB4+Ktx/Ti1UZyjU/uRZMrDGAS/UdjsrWNhZmJdYp71hZmVLGwCvqKl0OITHWUdeojtbdgC70KzseX3zRrH1A4G50my0M2LRbDFHUyNvCvRl2LTTH; - Expires=Tue, 11 Jan 2022 17:38:09 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=kEEkPc5DwFQ5s7a8uWQUmIfTK4yZvDqVc/X/nQNrr0Tho2UFXHKRdFU8PhWfrKYP/o+4km2ccFhXO91A0wAMOYlDGBHry5H5L/hD99LfW3Co37Jt7CGyBBse9oN/jMhW6XPKVLt9g4DOiRAPQ+87rtBf5xbbTH3sP28HP7/gDLnF; - Expires=Tue, 11 Jan 2022 17:38:09 GMT; Path=/ - - AWSALBTGCORS=kEEkPc5DwFQ5s7a8uWQUmIfTK4yZvDqVc/X/nQNrr0Tho2UFXHKRdFU8PhWfrKYP/o+4km2ccFhXO91A0wAMOYlDGBHry5H5L/hD99LfW3Co37Jt7CGyBBse9oN/jMhW6XPKVLt9g4DOiRAPQ+87rtBf5xbbTH3sP28HP7/gDLnF; - Expires=Tue, 11 Jan 2022 17:38:09 GMT; Path=/; SameSite=None; Secure - - csrftoken=mXx9kZGugXTp3IpxSVfnww3nqK2Wk9CnwU2ZUJsbkXFI6DJrGg8Nj5DJfmLUChXO; - expires=Tue, 03 Jan 2023 17:38:09 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=j9dzi1iis724pstf2d1qo55vv6xusfmj; expires=Tue, 18 Jan 2022 17:38:09 + - AWSALB=sHkUX03mHh+2SlN4B90EFvh+3tCzYrlB34ZVqLDQ2A0H8rI7Nu2KHWoXWs4tudUFugyY6FuH8ZByTcRLfs2x4h0yiQrHIy+uWdynnpsO6enFKwAh6wLqF9fPMFAn; + Expires=Fri, 14 Oct 2022 15:25:06 GMT; Path=/ + - AWSALBCORS=sHkUX03mHh+2SlN4B90EFvh+3tCzYrlB34ZVqLDQ2A0H8rI7Nu2KHWoXWs4tudUFugyY6FuH8ZByTcRLfs2x4h0yiQrHIy+uWdynnpsO6enFKwAh6wLqF9fPMFAn; + Expires=Fri, 14 Oct 2022 15:25:06 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=PHAJtXKYD1kg4f4DyXPibUSIcwee0bjobbxKgq4q9bGPqHU15HIY6Yb/83hfbvstgqCF9t1exkb0HWJM8tjqqYUAgtrIde0AtdYZh6W0e/FfWwMtaBFJrAvw7g9aT+qcsEjuyGoh/JuYWvBwTxSeWZOOZFStjAz2OgI4GbJDXcfA; + Expires=Fri, 14 Oct 2022 15:25:06 GMT; Path=/ + - AWSALBTGCORS=PHAJtXKYD1kg4f4DyXPibUSIcwee0bjobbxKgq4q9bGPqHU15HIY6Yb/83hfbvstgqCF9t1exkb0HWJM8tjqqYUAgtrIde0AtdYZh6W0e/FfWwMtaBFJrAvw7g9aT+qcsEjuyGoh/JuYWvBwTxSeWZOOZFStjAz2OgI4GbJDXcfA; + Expires=Fri, 14 Oct 2022 15:25:06 GMT; Path=/; SameSite=None; Secure + - csrftoken=JlqBa8vH9BMEDn7LZJWRYfAO5dhl3Lhr2tEP0czYO0ziEB8DFNGVB8JlKcgqx7r9; + expires=Fri, 06 Oct 2023 15:25:07 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=s5n2zl0ifa7cr15eefhehjaqcqsnbr6q; expires=Fri, 21 Oct 2022 15:25:07 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -59,82 +59,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/73d070a1-97ca-4e5d-9280-0db4c4dac39f/","id":"73d070a1-97ca-4e5d-9280-0db4c4dac39f","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-16T15:32:17.622015Z","modified_at":"2021-12-16T15:32:25.188581Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:38:09 GMT -- request: - method: delete - uri: https://api.cloudtruth.io/api/v1/projects/73d070a1-97ca-4e5d-9280-0db4c4dac39f/ - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - kubetruth/1.1.0 - Authorization: - - Api-Key - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 204 - message: No Content - headers: - Date: - - Tue, 04 Jan 2022 17:38:10 GMT - Content-Length: - - '0' - Connection: - - keep-alive - Set-Cookie: - - AWSALB=z1i/qd65CIMbfL0piunhHLiD16It169jpls7SkQBzidv1E/EuUvjFLv8scmjkTZCd96YZSc+X7NHgiv7V2NzMrVio7smI88cPONPywT4pMJhraJNIvc9Bck9s/pd; - Expires=Tue, 11 Jan 2022 17:38:09 GMT; Path=/ - - AWSALBCORS=z1i/qd65CIMbfL0piunhHLiD16It169jpls7SkQBzidv1E/EuUvjFLv8scmjkTZCd96YZSc+X7NHgiv7V2NzMrVio7smI88cPONPywT4pMJhraJNIvc9Bck9s/pd; - Expires=Tue, 11 Jan 2022 17:38:09 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=Do00mOLir1aeS5pNYrX2Cp2MQR3xF7elM+dHR8gZw2VGTbPsNDpraY4FcZuBvveGhQUc0+8jZXIW6R1IOLq4Ju8WOcRHhlmhUVcmvDoR4CJYyod7oHgIrsLxrQ18K8SPJ+gQYtJDdvliqZGCRW5ZRLTJM1xwW/CDTgzgNQ260NhD; - Expires=Tue, 11 Jan 2022 17:38:09 GMT; Path=/ - - AWSALBTGCORS=Do00mOLir1aeS5pNYrX2Cp2MQR3xF7elM+dHR8gZw2VGTbPsNDpraY4FcZuBvveGhQUc0+8jZXIW6R1IOLq4Ju8WOcRHhlmhUVcmvDoR4CJYyod7oHgIrsLxrQ18K8SPJ+gQYtJDdvliqZGCRW5ZRLTJM1xwW/CDTgzgNQ260NhD; - Expires=Tue, 11 Jan 2022 17:38:09 GMT; Path=/; SameSite=None; Secure - - csrftoken=cQpuuzvqBB5BHkEe0QkB2aH1rTpCB4IIZTDZ8UHzB07YBYCGoyzHWl45hzGMNzAb; - expires=Tue, 03 Jan 2023 17:38:10 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=yyxlyozopmpurb6jjarsqo3pfoua80yx; expires=Tue, 18 Jan 2022 17:38:10 - GMT; Max-Age=1209600; Path=/; Secure - Server: - - gunicorn - Vary: - - Accept, Cookie, Origin - Allow: - - GET, PUT, PATCH, DELETE, HEAD, OPTIONS - X-Frame-Options: - - DENY - X-Content-Type-Options: - - nosniff - Referrer-Policy: - - same-origin - Cross-Origin-Opener-Policy: - - same-origin - body: - encoding: UTF-8 - string: '' - recorded_at: Tue, 04 Jan 2022 17:38:10 GMT + string: '{"count":1,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:25:07 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: UTF-8 string: '{"name":"TestProject"}' @@ -142,7 +72,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -155,30 +85,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:38:10 GMT + - Fri, 07 Oct 2022 15:25:09 GMT Content-Type: - application/json Content-Length: - - '304' + - '365' Connection: - keep-alive Set-Cookie: - - AWSALB=4JDTRgMiMMXeQHsEi1j5ZyuX4mFW3BpyUthuVaaS1IOZ8yTfBR+kPIwj4hkI06VNneF1SZLfAW92uthMXM31yQvLXotRSBB8h2vluzG+WKRS4mwc9ViFWxveoWR4; - Expires=Tue, 11 Jan 2022 17:38:10 GMT; Path=/ - - AWSALBCORS=4JDTRgMiMMXeQHsEi1j5ZyuX4mFW3BpyUthuVaaS1IOZ8yTfBR+kPIwj4hkI06VNneF1SZLfAW92uthMXM31yQvLXotRSBB8h2vluzG+WKRS4mwc9ViFWxveoWR4; - Expires=Tue, 11 Jan 2022 17:38:10 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=Kz+2+JUKxIPrKq2znO24qthI93mkNrUKPqhTHdPIb6OMcX2pVKfXooFTnbyQuPb0CDC/ohIbvSgiIZfifQbnYmQpZjT2QYxKnoXQ22/gLqO/V0aeQ9doI87ct0l65vR4YlkwQDFScZuI3mHmlnv44jCtMEmxzsx4hU3Odb8fvfp+; - Expires=Tue, 11 Jan 2022 17:38:10 GMT; Path=/ - - AWSALBTGCORS=Kz+2+JUKxIPrKq2znO24qthI93mkNrUKPqhTHdPIb6OMcX2pVKfXooFTnbyQuPb0CDC/ohIbvSgiIZfifQbnYmQpZjT2QYxKnoXQ22/gLqO/V0aeQ9doI87ct0l65vR4YlkwQDFScZuI3mHmlnv44jCtMEmxzsx4hU3Odb8fvfp+; - Expires=Tue, 11 Jan 2022 17:38:10 GMT; Path=/; SameSite=None; Secure - - csrftoken=HuEZKHq2ZrHaKPuXXtvNl4JJA26342JHt2hAycoHFs7LsEthe3TrXpdNeWovl2Sb; - expires=Tue, 03 Jan 2023 17:38:10 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=wa8mgfy63i13oaxdfixoguvh2r529r03; expires=Tue, 18 Jan 2022 17:38:10 + - AWSALB=fBm14iqmOPKZAsyaNRyRIZYJlJRC0pZquXKqnK1JlLeSAMyhzbCa2jEBS3wZRkHib/zpzUIZy3ndUICeXX2PCwDg14RcNHoGaet+voPqW65qQa9pMoBnhDFxo6hs; + Expires=Fri, 14 Oct 2022 15:25:07 GMT; Path=/ + - AWSALBCORS=fBm14iqmOPKZAsyaNRyRIZYJlJRC0pZquXKqnK1JlLeSAMyhzbCa2jEBS3wZRkHib/zpzUIZy3ndUICeXX2PCwDg14RcNHoGaet+voPqW65qQa9pMoBnhDFxo6hs; + Expires=Fri, 14 Oct 2022 15:25:07 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=UynsoWoK3V/Nq5B2sqWBO6/BvFzy9kA3PgcdARJo+BakVhZDSXnYKXJy0co9UFMJM2kL5FVUJDPjH/xTkAHY15qpFdBCpijZiDIYTh9UWaVA6GYinIZWxI+pXQbulTe9HZJ/81nt8r3U5nNGygkcnz4femQT54o3W+9okckYl/3z; + Expires=Fri, 14 Oct 2022 15:25:07 GMT; Path=/ + - AWSALBTGCORS=UynsoWoK3V/Nq5B2sqWBO6/BvFzy9kA3PgcdARJo+BakVhZDSXnYKXJy0co9UFMJM2kL5FVUJDPjH/xTkAHY15qpFdBCpijZiDIYTh9UWaVA6GYinIZWxI+pXQbulTe9HZJ/81nt8r3U5nNGygkcnz4femQT54o3W+9okckYl/3z; + Expires=Fri, 14 Oct 2022 15:25:07 GMT; Path=/; SameSite=None; Secure + - csrftoken=Mg1LUEvtnBJDeTZAql0ivBTDUYoQfO5zyKDFkzhDpjaqBy8ORB3x0OKDCbx39omY; + expires=Fri, 06 Oct 2023 15:25:09 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=hreqsjv87fhro65ry89wa5blrv10qke2; expires=Fri, 21 Oct 2022 15:25:09 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/d5d78ba1-e952-4cdb-96e5-4280783e1b98/ + - https://api.staging.cloudtruth.io/api/v1/projects/655eafce-d1dc-4d72-a75a-09868e0a9dd6/ Vary: - Accept, Cookie, Origin Allow: @@ -193,11 +123,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/d5d78ba1-e952-4cdb-96e5-4280783e1b98/","id":"d5d78ba1-e952-4cdb-96e5-4280783e1b98","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:38:10.760550Z","modified_at":"2022-01-04T17:38:10.760550Z"}' - recorded_at: Tue, 04 Jan 2022 17:38:10 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/655eafce-d1dc-4d72-a75a-09868e0a9dd6/","id":"655eafce-d1dc-4d72-a75a-09868e0a9dd6","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:25:09.123373Z","modified_at":"2022-10-07T15:25:09.123373Z"}' + recorded_at: Fri, 07 Oct 2022 15:25:09 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -205,7 +135,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -218,25 +148,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:38:11 GMT + - Fri, 07 Oct 2022 15:25:11 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=Mn2UQu/eUkzMJw7THKX92+OxewwZm0B+NqmCMxM7jA8v968Maz3WUsRH6dPsiLP4CNETGx+c3rxuSZL55vLYJ8mQg3Z6x2TLB9TJo6hy9T0s51ek4zViZN1Fv2z+; - Expires=Tue, 11 Jan 2022 17:38:10 GMT; Path=/ - - AWSALBCORS=Mn2UQu/eUkzMJw7THKX92+OxewwZm0B+NqmCMxM7jA8v968Maz3WUsRH6dPsiLP4CNETGx+c3rxuSZL55vLYJ8mQg3Z6x2TLB9TJo6hy9T0s51ek4zViZN1Fv2z+; - Expires=Tue, 11 Jan 2022 17:38:10 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=t8H2Vxk931+O86vqk45FB+yg6WmZ0X+GzVyVuXB4cZG0ZCL9pnY8twEnIKWigDWQgqxEFXu/bmP3ZSuszr056RCGq+vMUA2Bj5lBsc6ktpfTYtib27peL0hkPXRGybnON50Mddz74Iee0DKIwSVNySy2bZLtRvkjBs+v6PBnBvnU; - Expires=Tue, 11 Jan 2022 17:38:10 GMT; Path=/ - - AWSALBTGCORS=t8H2Vxk931+O86vqk45FB+yg6WmZ0X+GzVyVuXB4cZG0ZCL9pnY8twEnIKWigDWQgqxEFXu/bmP3ZSuszr056RCGq+vMUA2Bj5lBsc6ktpfTYtib27peL0hkPXRGybnON50Mddz74Iee0DKIwSVNySy2bZLtRvkjBs+v6PBnBvnU; - Expires=Tue, 11 Jan 2022 17:38:10 GMT; Path=/; SameSite=None; Secure - - csrftoken=QwVqjbeEUboCr9PW6uGdjn2AWIABOZqy8TzyCyFdBI118Mdd2zQ6pt6t4VsRcHGz; - expires=Tue, 03 Jan 2023 17:38:11 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=5o6tgrqoblksuk8miwt9gmlzjqdf9dg9; expires=Tue, 18 Jan 2022 17:38:11 + - AWSALB=34SBcz0j/7SLWnB4v7f1pbllPwW/1TZRusBiDEzWvWW4BQdz3J+kx2ul758uMlEmC4IRKGtZM6wkVHvHRTkrYOMAi0yICNAkYpyPq5TToErZQOwYAQ9u2gaHdZ30; + Expires=Fri, 14 Oct 2022 15:25:09 GMT; Path=/ + - AWSALBCORS=34SBcz0j/7SLWnB4v7f1pbllPwW/1TZRusBiDEzWvWW4BQdz3J+kx2ul758uMlEmC4IRKGtZM6wkVHvHRTkrYOMAi0yICNAkYpyPq5TToErZQOwYAQ9u2gaHdZ30; + Expires=Fri, 14 Oct 2022 15:25:09 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=CT2lWHgnUnw4e8Zti5MUlFAlKP7lhcf1uHiUL4LWWhfUwVGKDLq5BFqYP5jeZh5n/He5UMQ7Yow9WAyK2vTCoaDQFHMM2LnjsWciJ0y0UaDd4fb5sS+xR2gFdZUMPH4HqRqyqfcNSNBxlUfYFUuj8KW3KoJ0ekx8xFbMHazhIe5M; + Expires=Fri, 14 Oct 2022 15:25:09 GMT; Path=/ + - AWSALBTGCORS=CT2lWHgnUnw4e8Zti5MUlFAlKP7lhcf1uHiUL4LWWhfUwVGKDLq5BFqYP5jeZh5n/He5UMQ7Yow9WAyK2vTCoaDQFHMM2LnjsWciJ0y0UaDd4fb5sS+xR2gFdZUMPH4HqRqyqfcNSNBxlUfYFUuj8KW3KoJ0ekx8xFbMHazhIe5M; + Expires=Fri, 14 Oct 2022 15:25:09 GMT; Path=/; SameSite=None; Secure + - csrftoken=mt7STS0ocEGJr9hn0fiKORI2FAe2lwVZ1ze5ceciGfQ23tsVxSFinzJdYSaUbjJY; + expires=Fri, 06 Oct 2023 15:25:11 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=k6ky7knpvmzs0r8stgdtpji5arzks92l; expires=Fri, 21 Oct 2022 15:25:11 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -254,23 +184,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/d5d78ba1-e952-4cdb-96e5-4280783e1b98/","id":"d5d78ba1-e952-4cdb-96e5-4280783e1b98","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:38:10.760550Z","modified_at":"2022-01-04T17:38:10.760550Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:38:11 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/655eafce-d1dc-4d72-a75a-09868e0a9dd6/","id":"655eafce-d1dc-4d72-a75a-09868e0a9dd6","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:25:09.123373Z","modified_at":"2022-10-07T15:25:09.123373Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:25:11 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/d5d78ba1-e952-4cdb-96e5-4280783e1b98/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/655eafce-d1dc-4d72-a75a-09868e0a9dd6/parameters/ body: encoding: UTF-8 string: '{"name":"one","type":"string"}' @@ -278,7 +197,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -291,30 +210,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:38:11 GMT + - Fri, 07 Oct 2022 15:25:12 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=oWUiWLT2eLF9NWAOkET5WP5XARjWWF938HKHDGGAf57ucR93xjReGnkWoHozodj5Y2W22Y0N6/bCVWZjlgZtLygJP+DSpWCfyfDkSTYQvIB7dIq/i5j2CchDyW2a; - Expires=Tue, 11 Jan 2022 17:38:11 GMT; Path=/ - - AWSALBCORS=oWUiWLT2eLF9NWAOkET5WP5XARjWWF938HKHDGGAf57ucR93xjReGnkWoHozodj5Y2W22Y0N6/bCVWZjlgZtLygJP+DSpWCfyfDkSTYQvIB7dIq/i5j2CchDyW2a; - Expires=Tue, 11 Jan 2022 17:38:11 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=k6p0omwcj1QUXc/L7Ztr8P/2DvAwkpnLzhaIS5Xf/3avA7WrcL/nocxXdZ8FL2dymENO8Aa7IqS2d63X6cenLlkHheWTeO+92S82F+Rb0rvYRAbP0LY40qr83q5uL2q3dtQJh8IyZAWGK0ttqikOS4updi/fi0CkQ0O08gewahEQ; - Expires=Tue, 11 Jan 2022 17:38:11 GMT; Path=/ - - AWSALBTGCORS=k6p0omwcj1QUXc/L7Ztr8P/2DvAwkpnLzhaIS5Xf/3avA7WrcL/nocxXdZ8FL2dymENO8Aa7IqS2d63X6cenLlkHheWTeO+92S82F+Rb0rvYRAbP0LY40qr83q5uL2q3dtQJh8IyZAWGK0ttqikOS4updi/fi0CkQ0O08gewahEQ; - Expires=Tue, 11 Jan 2022 17:38:11 GMT; Path=/; SameSite=None; Secure - - csrftoken=R9RgftRqlkADhG6W8fMSEhviGMEneyow2w0POydGXriYLiUqC5HCNpWwt3Mfc0Rd; - expires=Tue, 03 Jan 2023 17:38:11 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=1ji4k8k5j9pwydh28hkjizh43mlftxr1; expires=Tue, 18 Jan 2022 17:38:11 + - AWSALB=l4wOsE2rideDqjltktSWu8PTzW1HqUR0TcclMrGFG/tPACvpFUVplYoqNKpxR44OnUaYTiE6GVaHLbMN45X0HVfsE/Iiyr/sf30LZE288VqBG/kF83nK+8/1V6Qq; + Expires=Fri, 14 Oct 2022 15:25:11 GMT; Path=/ + - AWSALBCORS=l4wOsE2rideDqjltktSWu8PTzW1HqUR0TcclMrGFG/tPACvpFUVplYoqNKpxR44OnUaYTiE6GVaHLbMN45X0HVfsE/Iiyr/sf30LZE288VqBG/kF83nK+8/1V6Qq; + Expires=Fri, 14 Oct 2022 15:25:11 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=dCPSJKg3YFHcoEWw7tc8ChbdvrU2kCALJx73xuAT974JfCRSbKTS5+6Yz93BDYGbFn9g7CGTvXMABGG4JGnjTHXm14yFrLrcpfxiZOZ+M2S5S5obOXCKurgFa14uwJvorKhzrfJdkJK6shSenyZ5N/bd0e9V0s7AaCRHrnarUyYm; + Expires=Fri, 14 Oct 2022 15:25:11 GMT; Path=/ + - AWSALBTGCORS=dCPSJKg3YFHcoEWw7tc8ChbdvrU2kCALJx73xuAT974JfCRSbKTS5+6Yz93BDYGbFn9g7CGTvXMABGG4JGnjTHXm14yFrLrcpfxiZOZ+M2S5S5obOXCKurgFa14uwJvorKhzrfJdkJK6shSenyZ5N/bd0e9V0s7AaCRHrnarUyYm; + Expires=Fri, 14 Oct 2022 15:25:11 GMT; Path=/; SameSite=None; Secure + - csrftoken=pQnQ2qrSmVFL6R0tWBxR0D3tUiYWkVbBxc8LBdFt6VbWSuaXf2F22AUv8RL3vZeb; + expires=Fri, 06 Oct 2023 15:25:12 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=x6i3iofv0up89v8y55qr2nqgmaztwp58; expires=Fri, 21 Oct 2022 15:25:12 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/d5d78ba1-e952-4cdb-96e5-4280783e1b98/parameters/4107cb0e-4cf9-4f32-8348-070ace7d9920/ + - https://api.staging.cloudtruth.io/api/v1/projects/655eafce-d1dc-4d72-a75a-09868e0a9dd6/parameters/ff4ad068-c56f-4268-a47f-f4e07e9dd0b7/ Vary: - Accept, Cookie, Origin Allow: @@ -329,11 +248,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/d5d78ba1-e952-4cdb-96e5-4280783e1b98/parameters/4107cb0e-4cf9-4f32-8348-070ace7d9920/","id":"4107cb0e-4cf9-4f32-8348-070ace7d9920","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/d5d78ba1-e952-4cdb-96e5-4280783e1b98/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T17:38:11.842375Z","modified_at":"2022-01-04T17:38:11.842375Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 17:38:11 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/655eafce-d1dc-4d72-a75a-09868e0a9dd6/parameters/ff4ad068-c56f-4268-a47f-f4e07e9dd0b7/","id":"ff4ad068-c56f-4268-a47f-f4e07e9dd0b7","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/655eafce-d1dc-4d72-a75a-09868e0a9dd6/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:25:12.757834Z","modified_at":"2022-10-07T15:25:12.757834Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:25:12 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/d5d78ba1-e952-4cdb-96e5-4280783e1b98/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/655eafce-d1dc-4d72-a75a-09868e0a9dd6/parameters/ body: encoding: UTF-8 string: '{"name":"two","type":"string"}' @@ -341,7 +260,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -354,30 +273,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:38:12 GMT + - Fri, 07 Oct 2022 15:25:14 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=eKU7jUi1RuaLNwIuySw6CxJAoBP1J9cwQOJr0UQMvCxUoJyEz1+XGQluM8AiStP4pBfZ/OUhykwAUjJm6KBElsezlR5RnarCGv7lqThkx3i+1d6RoIwTOC4PqTUq; - Expires=Tue, 11 Jan 2022 17:38:12 GMT; Path=/ - - AWSALBCORS=eKU7jUi1RuaLNwIuySw6CxJAoBP1J9cwQOJr0UQMvCxUoJyEz1+XGQluM8AiStP4pBfZ/OUhykwAUjJm6KBElsezlR5RnarCGv7lqThkx3i+1d6RoIwTOC4PqTUq; - Expires=Tue, 11 Jan 2022 17:38:12 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=QNoabZx/Y7wQ2dwwCc+HiwbCC+L9bSzMHrI4OTgbgDotzmR9hOZIurIMGviz6VeVlsRAWmZsVOlwDEyO1ysPfrLmRAfCVaiEz7Cbx3FRK1bKGMP9krQjvNpZar/TOSpXs2BLt0skhtIFLdyNxSSSYqDmad2hgduseCS9iZIIPyES; - Expires=Tue, 11 Jan 2022 17:38:12 GMT; Path=/ - - AWSALBTGCORS=QNoabZx/Y7wQ2dwwCc+HiwbCC+L9bSzMHrI4OTgbgDotzmR9hOZIurIMGviz6VeVlsRAWmZsVOlwDEyO1ysPfrLmRAfCVaiEz7Cbx3FRK1bKGMP9krQjvNpZar/TOSpXs2BLt0skhtIFLdyNxSSSYqDmad2hgduseCS9iZIIPyES; - Expires=Tue, 11 Jan 2022 17:38:12 GMT; Path=/; SameSite=None; Secure - - csrftoken=jpB4ApYR45aPQcFFScYwcZJdOAsoqZucwEcLIAnvpq8LaOJqPey3oVZjZfswG63J; - expires=Tue, 03 Jan 2023 17:38:12 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=nf8toyre8gnr8a1nzj7comczmpldhzpb; expires=Tue, 18 Jan 2022 17:38:12 + - AWSALB=TxI89lip7lNGXAeqQjMuBYnrJ16ayAI4cJuyQxC/G+9DgaiCMFH1s6oQf9BL+h2rQz1yfxP1iABrjXlcOY9J21IRaM8V65Y9hR2IgvvWcLt+Zj50V1LYvcoBbPWP; + Expires=Fri, 14 Oct 2022 15:25:12 GMT; Path=/ + - AWSALBCORS=TxI89lip7lNGXAeqQjMuBYnrJ16ayAI4cJuyQxC/G+9DgaiCMFH1s6oQf9BL+h2rQz1yfxP1iABrjXlcOY9J21IRaM8V65Y9hR2IgvvWcLt+Zj50V1LYvcoBbPWP; + Expires=Fri, 14 Oct 2022 15:25:12 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=iARYgS3vVNNvmnhK5+Pbo6Meq2wA67HWsTyWCkSu0sbVTTG7K15WRrbTucFxKp/1K7Kmfv5cF/KMV16PqUh1LqwtMhki0pj8ZCTtD+WALgD72Rd5ZXAwYxk8275hCFahH3G0Kcls0Z4SV123k01pCEF+VXg7WgbUG57F+a/9ZMvv; + Expires=Fri, 14 Oct 2022 15:25:12 GMT; Path=/ + - AWSALBTGCORS=iARYgS3vVNNvmnhK5+Pbo6Meq2wA67HWsTyWCkSu0sbVTTG7K15WRrbTucFxKp/1K7Kmfv5cF/KMV16PqUh1LqwtMhki0pj8ZCTtD+WALgD72Rd5ZXAwYxk8275hCFahH3G0Kcls0Z4SV123k01pCEF+VXg7WgbUG57F+a/9ZMvv; + Expires=Fri, 14 Oct 2022 15:25:12 GMT; Path=/; SameSite=None; Secure + - csrftoken=wsZ413MuDV6DuDLI7d6NZW9A2uM2njpR8eYbe7EPXCg5oeCjgfAUoWl8BG6OeJPR; + expires=Fri, 06 Oct 2023 15:25:14 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=e4trav8ot3172n4r6sidcse6mk0n8yzf; expires=Fri, 21 Oct 2022 15:25:14 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/d5d78ba1-e952-4cdb-96e5-4280783e1b98/parameters/1277e9fb-c80d-45a3-9fd1-d8e6bac93c21/ + - https://api.staging.cloudtruth.io/api/v1/projects/655eafce-d1dc-4d72-a75a-09868e0a9dd6/parameters/9c1e050b-5e2d-42ea-a179-6e0519edf1bb/ Vary: - Accept, Cookie, Origin Allow: @@ -392,6 +311,6 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/d5d78ba1-e952-4cdb-96e5-4280783e1b98/parameters/1277e9fb-c80d-45a3-9fd1-d8e6bac93c21/","id":"1277e9fb-c80d-45a3-9fd1-d8e6bac93c21","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/d5d78ba1-e952-4cdb-96e5-4280783e1b98/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T17:38:12.381310Z","modified_at":"2022-01-04T17:38:12.381310Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 17:38:12 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/655eafce-d1dc-4d72-a75a-09868e0a9dd6/parameters/9c1e050b-5e2d-42ea-a179-6e0519edf1bb/","id":"9c1e050b-5e2d-42ea-a179-6e0519edf1bb","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/655eafce-d1dc-4d72-a75a-09868e0a9dd6/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:25:14.162187Z","modified_at":"2022-10-07T15:25:14.162187Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:25:14 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_projects/memoizes_projects_.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_projects/memoizes_projects_.yml index 753eb4c..224ace2 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_projects/memoizes_projects_.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_projects/memoizes_projects_.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -10,7 +10,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -23,25 +23,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:38:13 GMT + - Fri, 07 Oct 2022 15:25:15 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=wUuQZKBM2sYh0nAh4N53sSASN0pWwv5e6Ucs+1pswfb4qE4MFe4MNn9lbOXNo+Yf8VR/yScKnFyOmYAreVrtghDpoMOd7PHvKmfr32EJ2wj4m7KF4XxKUoxcCgCH; - Expires=Tue, 11 Jan 2022 17:38:12 GMT; Path=/ - - AWSALBCORS=wUuQZKBM2sYh0nAh4N53sSASN0pWwv5e6Ucs+1pswfb4qE4MFe4MNn9lbOXNo+Yf8VR/yScKnFyOmYAreVrtghDpoMOd7PHvKmfr32EJ2wj4m7KF4XxKUoxcCgCH; - Expires=Tue, 11 Jan 2022 17:38:12 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=GTFHwRPplsO5KttT7VIwQ45kvyfYfo/WzHQEAgKyt5kVbKuz+5H0LBPW/7eKnVQZsR0NKqOBV/1PuA38wO/E06L3lg2ObZ5e4h6uIy01kDxBspJIe0z8vtFbdujLFfk6iK2NzQhSbbGUX79hQDOVHa9sbmpl9KUIyFXmMQy5LaCY; - Expires=Tue, 11 Jan 2022 17:38:12 GMT; Path=/ - - AWSALBTGCORS=GTFHwRPplsO5KttT7VIwQ45kvyfYfo/WzHQEAgKyt5kVbKuz+5H0LBPW/7eKnVQZsR0NKqOBV/1PuA38wO/E06L3lg2ObZ5e4h6uIy01kDxBspJIe0z8vtFbdujLFfk6iK2NzQhSbbGUX79hQDOVHa9sbmpl9KUIyFXmMQy5LaCY; - Expires=Tue, 11 Jan 2022 17:38:12 GMT; Path=/; SameSite=None; Secure - - csrftoken=Q6tKgu2EduxYQqZlUmDAnGK1nrJJwvoIuzZUJQrZ9Y8BxPKUyw5BjU3fnoh5dFzK; - expires=Tue, 03 Jan 2023 17:38:13 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=w77byayb32hex6i1sdxppkg0uvioklqt; expires=Tue, 18 Jan 2022 17:38:13 + - AWSALB=vMmYrft4ktB28/aOc0B+7TJyx5GFJpG3PMRo/yepnloBxGl+qJIOjkzrZ25+lzhsf2aUBguV5f8Yb4d8u+AE5okHxdpIzQe0B5npXSao4eK9chAvwNxG6ZEC9HG9; + Expires=Fri, 14 Oct 2022 15:25:14 GMT; Path=/ + - AWSALBCORS=vMmYrft4ktB28/aOc0B+7TJyx5GFJpG3PMRo/yepnloBxGl+qJIOjkzrZ25+lzhsf2aUBguV5f8Yb4d8u+AE5okHxdpIzQe0B5npXSao4eK9chAvwNxG6ZEC9HG9; + Expires=Fri, 14 Oct 2022 15:25:14 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=XQ3JwgFwIUeFOdncse8UR9BqsRrhnwURVGShkFKMyDLuhL1+lQFLoDi53Qq3rnG42cjLv1FlEOtKIa/xjH3hgO3fZndNCqUv+FRadC+DZajusjEOYke6T099nFHc5oJ0utFasdtJmpyuT1NEGfzh0u1qwt6EzEsliGdL8mWYmbF3; + Expires=Fri, 14 Oct 2022 15:25:14 GMT; Path=/ + - AWSALBTGCORS=XQ3JwgFwIUeFOdncse8UR9BqsRrhnwURVGShkFKMyDLuhL1+lQFLoDi53Qq3rnG42cjLv1FlEOtKIa/xjH3hgO3fZndNCqUv+FRadC+DZajusjEOYke6T099nFHc5oJ0utFasdtJmpyuT1NEGfzh0u1qwt6EzEsliGdL8mWYmbF3; + Expires=Fri, 14 Oct 2022 15:25:14 GMT; Path=/; SameSite=None; Secure + - csrftoken=DOzMdwhioeo20zWf31axxSThsMinwJ0YoIYeXUeN4FUIypBZqll2o1NPJYFqeGj0; + expires=Fri, 06 Oct 2023 15:25:15 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=edu64evbwo26j03e5f4y4p2917ijzhzf; expires=Fri, 21 Oct 2022 15:25:15 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -59,23 +59,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/d5d78ba1-e952-4cdb-96e5-4280783e1b98/","id":"d5d78ba1-e952-4cdb-96e5-4280783e1b98","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:38:10.760550Z","modified_at":"2022-01-04T17:38:12.381310Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:38:13 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/655eafce-d1dc-4d72-a75a-09868e0a9dd6/","id":"655eafce-d1dc-4d72-a75a-09868e0a9dd6","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:25:09.123373Z","modified_at":"2022-10-07T15:25:09.123373Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:25:15 GMT - request: method: delete - uri: https://api.cloudtruth.io/api/v1/projects/d5d78ba1-e952-4cdb-96e5-4280783e1b98/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/655eafce-d1dc-4d72-a75a-09868e0a9dd6/ body: encoding: US-ASCII string: '' @@ -83,7 +72,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Authorization: - Api-Key Accept-Encoding: @@ -96,23 +85,23 @@ http_interactions: message: No Content headers: Date: - - Tue, 04 Jan 2022 17:38:13 GMT + - Fri, 07 Oct 2022 15:25:17 GMT Content-Length: - '0' Connection: - keep-alive Set-Cookie: - - AWSALB=8zqSl30qFZs1dtfDavsxQqtcjO69mkFnE6ViL8rrMYFE1llRsaz7PcTlqJQU+fItjOAK66+TXV7vByKk9aMDQ76RD5feCgrsTUvWmvoGovEYrWwWrbk74nW4v99g; - Expires=Tue, 11 Jan 2022 17:38:13 GMT; Path=/ - - AWSALBCORS=8zqSl30qFZs1dtfDavsxQqtcjO69mkFnE6ViL8rrMYFE1llRsaz7PcTlqJQU+fItjOAK66+TXV7vByKk9aMDQ76RD5feCgrsTUvWmvoGovEYrWwWrbk74nW4v99g; - Expires=Tue, 11 Jan 2022 17:38:13 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=beBUKT6sfbWmIcUsN1pj7w4KUoM4valg+RZgR6ZCluTbc+lkngSnO0iDfWvfnLUZN7jXExC6W5Irtke1go95TBZnfcAorKzaz1dSu1GEtokcf6vSHhK2MdZe2f0hqZq1Goh6uRIub23fErnaRsLIM5t5bkY/WbOx+i07lbNgLK7f; - Expires=Tue, 11 Jan 2022 17:38:13 GMT; Path=/ - - AWSALBTGCORS=beBUKT6sfbWmIcUsN1pj7w4KUoM4valg+RZgR6ZCluTbc+lkngSnO0iDfWvfnLUZN7jXExC6W5Irtke1go95TBZnfcAorKzaz1dSu1GEtokcf6vSHhK2MdZe2f0hqZq1Goh6uRIub23fErnaRsLIM5t5bkY/WbOx+i07lbNgLK7f; - Expires=Tue, 11 Jan 2022 17:38:13 GMT; Path=/; SameSite=None; Secure - - csrftoken=oNyhYv2mFddYm9oBjDyXr7LSXPl492pardJTH4OJEpyYUD1dtbAlukSC8dMuzWxw; - expires=Tue, 03 Jan 2023 17:38:13 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=t37ldultd5i54mwrap47729gbvpzksjt; expires=Tue, 18 Jan 2022 17:38:13 + - AWSALB=edahz54x5bv3RV3dTnjQyNyyNUnw3J3eXxe4nfhE5WhIBRLZQgKjqyTQ5VN7eFDlpJgZaHgMN37GEWyHjuBwLE+lJ4pzbZUowUPFSLdQMDXUZuBCigpOefQMbyrO; + Expires=Fri, 14 Oct 2022 15:25:15 GMT; Path=/ + - AWSALBCORS=edahz54x5bv3RV3dTnjQyNyyNUnw3J3eXxe4nfhE5WhIBRLZQgKjqyTQ5VN7eFDlpJgZaHgMN37GEWyHjuBwLE+lJ4pzbZUowUPFSLdQMDXUZuBCigpOefQMbyrO; + Expires=Fri, 14 Oct 2022 15:25:15 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=EP5fKgGoY4reDLLs7Tn8ffQeNw5l3BCIeV9BJ5Yjl8xvDhdwguJu3dvwfHusYAURwQQ3wEThQJSUKzE9wQJz3h1lEbyeyJtZYN49VWx5jPSyUcqERCGncLzAQy7faGXSqCDKgvr+sX6EMSLwY4qmaqmegHbTR81fF7NPBHtCN37r; + Expires=Fri, 14 Oct 2022 15:25:15 GMT; Path=/ + - AWSALBTGCORS=EP5fKgGoY4reDLLs7Tn8ffQeNw5l3BCIeV9BJ5Yjl8xvDhdwguJu3dvwfHusYAURwQQ3wEThQJSUKzE9wQJz3h1lEbyeyJtZYN49VWx5jPSyUcqERCGncLzAQy7faGXSqCDKgvr+sX6EMSLwY4qmaqmegHbTR81fF7NPBHtCN37r; + Expires=Fri, 14 Oct 2022 15:25:15 GMT; Path=/; SameSite=None; Secure + - csrftoken=jd8VmiESkz2GuZdQXZTvNny4CgS0Ti3TmaFXec3ILh6mCUMcPeMMR7jxr0RUTQfu; + expires=Fri, 06 Oct 2023 15:25:17 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=vlm1yj31l21uhkb9m4jl7sci3bfozot0; expires=Fri, 21 Oct 2022 15:25:17 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -131,10 +120,10 @@ http_interactions: body: encoding: UTF-8 string: '' - recorded_at: Tue, 04 Jan 2022 17:38:13 GMT + recorded_at: Fri, 07 Oct 2022 15:25:17 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: UTF-8 string: '{"name":"TestProject"}' @@ -142,7 +131,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -155,30 +144,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:38:14 GMT + - Fri, 07 Oct 2022 15:25:19 GMT Content-Type: - application/json Content-Length: - - '304' + - '365' Connection: - keep-alive Set-Cookie: - - AWSALB=WoC06RrI+gNFEPnu75QJ323Oi52rHJvZSRGzVlrqdqIecw+VNwhEWOqAyxIEAqQykn8b1IVidQGEo2A3C18Xugfrnf4ZkIngofDSH59SbEie+pwdUCyapCaVDcAu; - Expires=Tue, 11 Jan 2022 17:38:13 GMT; Path=/ - - AWSALBCORS=WoC06RrI+gNFEPnu75QJ323Oi52rHJvZSRGzVlrqdqIecw+VNwhEWOqAyxIEAqQykn8b1IVidQGEo2A3C18Xugfrnf4ZkIngofDSH59SbEie+pwdUCyapCaVDcAu; - Expires=Tue, 11 Jan 2022 17:38:13 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=OPIIyXHO/36+ugTfr+q+OX9/yYAK91ptVW02TI4WVPBj+2uua8bEk9dNocDiFI5NBVZIEpDHz0DQUCCwCMBhVxNdqlMgOVUnq0eNOl2DoLb1xL4qa8kXNdU2vVqNrpn37XGZ/wwo9G5K2cVO4rrgqWOHXi/uTJTu4Hl/CNAExKCX; - Expires=Tue, 11 Jan 2022 17:38:13 GMT; Path=/ - - AWSALBTGCORS=OPIIyXHO/36+ugTfr+q+OX9/yYAK91ptVW02TI4WVPBj+2uua8bEk9dNocDiFI5NBVZIEpDHz0DQUCCwCMBhVxNdqlMgOVUnq0eNOl2DoLb1xL4qa8kXNdU2vVqNrpn37XGZ/wwo9G5K2cVO4rrgqWOHXi/uTJTu4Hl/CNAExKCX; - Expires=Tue, 11 Jan 2022 17:38:13 GMT; Path=/; SameSite=None; Secure - - csrftoken=TPLxYxtluQB65ju1at5D8c2ukUzFYoE0EM3W4Q9O8bfVc52QdyQtCDwiyVsK6J07; - expires=Tue, 03 Jan 2023 17:38:14 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=494d0infekpmlutpyu96hppbxtnr1y7c; expires=Tue, 18 Jan 2022 17:38:14 + - AWSALB=pQH9yQpMDZwOETFwMSHXKPzCBt0a+xzrS3E3/VW8C9HjFtjhw5zUMXTBlLlQIWwvWNq1P8X5lHi3ADmvWnOSxqqoKytPglv51qIPSHCJKQ585mkiGGgHNPj+8SSP; + Expires=Fri, 14 Oct 2022 15:25:17 GMT; Path=/ + - AWSALBCORS=pQH9yQpMDZwOETFwMSHXKPzCBt0a+xzrS3E3/VW8C9HjFtjhw5zUMXTBlLlQIWwvWNq1P8X5lHi3ADmvWnOSxqqoKytPglv51qIPSHCJKQ585mkiGGgHNPj+8SSP; + Expires=Fri, 14 Oct 2022 15:25:17 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=/1o5UIEXTr1fZd9dHoe4NGmGqUPsLOGVHY6gEKXalWFSZXVHNiUU6iBlwEKs6NouonsdRpYfVtR+0c06t4BDTPXoBDKyEmwfLZmHrNdl0+le2yERvqXzyfQy1O9JzbnpPRPfqvvBzqRIcfoWsSCP70OttvJAF+qATBR8aIFYfni9; + Expires=Fri, 14 Oct 2022 15:25:17 GMT; Path=/ + - AWSALBTGCORS=/1o5UIEXTr1fZd9dHoe4NGmGqUPsLOGVHY6gEKXalWFSZXVHNiUU6iBlwEKs6NouonsdRpYfVtR+0c06t4BDTPXoBDKyEmwfLZmHrNdl0+le2yERvqXzyfQy1O9JzbnpPRPfqvvBzqRIcfoWsSCP70OttvJAF+qATBR8aIFYfni9; + Expires=Fri, 14 Oct 2022 15:25:17 GMT; Path=/; SameSite=None; Secure + - csrftoken=OxkEvcrdhdhS1bpmFOBH4cOwdB36fEB2NSUIojggrR3wumfzDVGYvH4EnyR63vC4; + expires=Fri, 06 Oct 2023 15:25:19 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=omwc1op45suhdobzfychcxtmx43cwixx; expires=Fri, 21 Oct 2022 15:25:19 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/c33aa2f3-f20e-48e1-97fa-126cee70b924/ + - https://api.staging.cloudtruth.io/api/v1/projects/3d5c5263-dc2b-4cb4-b71a-7e820a822556/ Vary: - Accept, Cookie, Origin Allow: @@ -193,11 +182,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/c33aa2f3-f20e-48e1-97fa-126cee70b924/","id":"c33aa2f3-f20e-48e1-97fa-126cee70b924","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:38:14.069320Z","modified_at":"2022-01-04T17:38:14.069320Z"}' - recorded_at: Tue, 04 Jan 2022 17:38:14 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/3d5c5263-dc2b-4cb4-b71a-7e820a822556/","id":"3d5c5263-dc2b-4cb4-b71a-7e820a822556","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:25:19.057799Z","modified_at":"2022-10-07T15:25:19.057799Z"}' + recorded_at: Fri, 07 Oct 2022 15:25:19 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -205,7 +194,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -218,25 +207,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:38:14 GMT + - Fri, 07 Oct 2022 15:25:20 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=gpXyIBIS69HOCkDPACeCvREr4RNJCpHLXkCPvpALWR2oxAADe2nto3bpsz1uJpA29XPHivPalXYv6vZ/xUOpvaC+rSyjA+mTldY6eZyOr/+plc/8fVys+zKUbCaD; - Expires=Tue, 11 Jan 2022 17:38:14 GMT; Path=/ - - AWSALBCORS=gpXyIBIS69HOCkDPACeCvREr4RNJCpHLXkCPvpALWR2oxAADe2nto3bpsz1uJpA29XPHivPalXYv6vZ/xUOpvaC+rSyjA+mTldY6eZyOr/+plc/8fVys+zKUbCaD; - Expires=Tue, 11 Jan 2022 17:38:14 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=8IAW1TsqHoB6NRBr3DR5LXpUOJ2xqBlqxpu7rfKBurkKoArkEKAFut4MeurzyxZFJxPHnnTlkJWjqGWHBwpMrh7ZZD0KkD5DlzmRzdnEXArhH3QxRp7qHcT1rknwP9lqEi83f2e8wi5PrEkYPpf6zfnQX0pdGywyN/NiQQaP8miF; - Expires=Tue, 11 Jan 2022 17:38:14 GMT; Path=/ - - AWSALBTGCORS=8IAW1TsqHoB6NRBr3DR5LXpUOJ2xqBlqxpu7rfKBurkKoArkEKAFut4MeurzyxZFJxPHnnTlkJWjqGWHBwpMrh7ZZD0KkD5DlzmRzdnEXArhH3QxRp7qHcT1rknwP9lqEi83f2e8wi5PrEkYPpf6zfnQX0pdGywyN/NiQQaP8miF; - Expires=Tue, 11 Jan 2022 17:38:14 GMT; Path=/; SameSite=None; Secure - - csrftoken=UxcF0zZ4Im8fhLPpV2cZWRoIzJCOE3gCz15Wp9EUEKdAQdYvRghKUBRNy36Ocj62; - expires=Tue, 03 Jan 2023 17:38:14 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=5dljteglyjn493hcd4uf3ogb1me3gn1k; expires=Tue, 18 Jan 2022 17:38:14 + - AWSALB=leP57YPe9IPWzSaWHqM4mSqNH7QHZDNPWhZE7J44FqKxE+cBuDLyMR97F5STo48kUgCAF6JQ2eYS/QoiDbzCINKEe/aB9dFLguUeo/aGSQ8Jy2B99WN+Va1N5JK3; + Expires=Fri, 14 Oct 2022 15:25:19 GMT; Path=/ + - AWSALBCORS=leP57YPe9IPWzSaWHqM4mSqNH7QHZDNPWhZE7J44FqKxE+cBuDLyMR97F5STo48kUgCAF6JQ2eYS/QoiDbzCINKEe/aB9dFLguUeo/aGSQ8Jy2B99WN+Va1N5JK3; + Expires=Fri, 14 Oct 2022 15:25:19 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=xWUHrdpfsF5lS1RD/P72PUV1wfiG08LlvVW8vFlf226giqK4hj49LtiexSiFBKL0z3id1l4PqUdz8subHhzKVtC8iPKlQ/bCLy3yQa1JRsCPlSjODECtR89pcV0V4joRKlxizKvHAT+JrzdaGsRIuAelEoN13cbHfNMc60+UykWu; + Expires=Fri, 14 Oct 2022 15:25:19 GMT; Path=/ + - AWSALBTGCORS=xWUHrdpfsF5lS1RD/P72PUV1wfiG08LlvVW8vFlf226giqK4hj49LtiexSiFBKL0z3id1l4PqUdz8subHhzKVtC8iPKlQ/bCLy3yQa1JRsCPlSjODECtR89pcV0V4joRKlxizKvHAT+JrzdaGsRIuAelEoN13cbHfNMc60+UykWu; + Expires=Fri, 14 Oct 2022 15:25:19 GMT; Path=/; SameSite=None; Secure + - csrftoken=EVbCo1nDq9oScziCI6VgdMhYOqRjaMhqEfjOW5foAeTYYKUPwBCVW6jYpnvHM4YY; + expires=Fri, 06 Oct 2023 15:25:20 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=496gpprr78ejgncba1z9goycvk10uob6; expires=Fri, 21 Oct 2022 15:25:20 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -254,23 +243,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/c33aa2f3-f20e-48e1-97fa-126cee70b924/","id":"c33aa2f3-f20e-48e1-97fa-126cee70b924","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:38:14.069320Z","modified_at":"2022-01-04T17:38:14.069320Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:38:14 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/3d5c5263-dc2b-4cb4-b71a-7e820a822556/","id":"3d5c5263-dc2b-4cb4-b71a-7e820a822556","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:25:19.057799Z","modified_at":"2022-10-07T15:25:19.057799Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:25:20 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/c33aa2f3-f20e-48e1-97fa-126cee70b924/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/3d5c5263-dc2b-4cb4-b71a-7e820a822556/parameters/ body: encoding: UTF-8 string: '{"name":"one","type":"string"}' @@ -278,7 +256,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -291,30 +269,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:38:15 GMT + - Fri, 07 Oct 2022 15:25:22 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=rZiNxIm5ZoD5n36OtO7yYSgZ2gVl9bX9kA765uS4WhrkRCrrmaCeeBHl99SXD4cCRm4trdPE+vdYvy8lpNATRoesX2+e4HWJ2Ubb3eppqVbjFNi20TrEORBhsKOe; - Expires=Tue, 11 Jan 2022 17:38:14 GMT; Path=/ - - AWSALBCORS=rZiNxIm5ZoD5n36OtO7yYSgZ2gVl9bX9kA765uS4WhrkRCrrmaCeeBHl99SXD4cCRm4trdPE+vdYvy8lpNATRoesX2+e4HWJ2Ubb3eppqVbjFNi20TrEORBhsKOe; - Expires=Tue, 11 Jan 2022 17:38:14 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=wypnxdvovPx7U6dAu4v9VZ5rM2ZvyUKmKkg1Q2lW953JkZtFWyCg4iqG66HkcCiLcVAA+UQgXWn0BiJGWqEe/tjV9VSEapuknpXhUrdfz7KvqQ2q1uo03xBnlrq3jvtXtdeL7HwPqz0nlFllwTwjeK+Ddom0feg1iFeze5lbyy8d; - Expires=Tue, 11 Jan 2022 17:38:14 GMT; Path=/ - - AWSALBTGCORS=wypnxdvovPx7U6dAu4v9VZ5rM2ZvyUKmKkg1Q2lW953JkZtFWyCg4iqG66HkcCiLcVAA+UQgXWn0BiJGWqEe/tjV9VSEapuknpXhUrdfz7KvqQ2q1uo03xBnlrq3jvtXtdeL7HwPqz0nlFllwTwjeK+Ddom0feg1iFeze5lbyy8d; - Expires=Tue, 11 Jan 2022 17:38:14 GMT; Path=/; SameSite=None; Secure - - csrftoken=kt9N0eqab1E1KheK8I9LWsSDkfVILz4KwaHx2iD8e2i5325XEUSwq4fcknk1ncb9; - expires=Tue, 03 Jan 2023 17:38:15 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=9427or1zcjg33xcbll7sao3736tzlblh; expires=Tue, 18 Jan 2022 17:38:15 + - AWSALB=dkDydZVugjpJstu03tjQJ26ZneZ9WL8OiAEOc8a2qD4My2I9hFtSN3h6KTMIBpoVfuJ3yGed0yEprfId/ktFeVXzE2qpAn2Y8ENleZpRcCRErRYMtgj4RszDsAKW; + Expires=Fri, 14 Oct 2022 15:25:21 GMT; Path=/ + - AWSALBCORS=dkDydZVugjpJstu03tjQJ26ZneZ9WL8OiAEOc8a2qD4My2I9hFtSN3h6KTMIBpoVfuJ3yGed0yEprfId/ktFeVXzE2qpAn2Y8ENleZpRcCRErRYMtgj4RszDsAKW; + Expires=Fri, 14 Oct 2022 15:25:21 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=moAgamKU13wqwNidh+/Ze/tNlbwJhA1cSEnz2UYr9wBwHPED3Mwlt3i4pTb2QUhXp636AOft0l0vhIcFtp0SAaCTDqM/Lcu32ybfS/pWkY9ixeqXUVzZlfwq+8OfwkSXXGbB5RIdYg4xUHzbFtI5aMQ7AYP8gR/ycLuDGo/3RNCR; + Expires=Fri, 14 Oct 2022 15:25:21 GMT; Path=/ + - AWSALBTGCORS=moAgamKU13wqwNidh+/Ze/tNlbwJhA1cSEnz2UYr9wBwHPED3Mwlt3i4pTb2QUhXp636AOft0l0vhIcFtp0SAaCTDqM/Lcu32ybfS/pWkY9ixeqXUVzZlfwq+8OfwkSXXGbB5RIdYg4xUHzbFtI5aMQ7AYP8gR/ycLuDGo/3RNCR; + Expires=Fri, 14 Oct 2022 15:25:21 GMT; Path=/; SameSite=None; Secure + - csrftoken=7h1qyZEapppvAztQAR4Zi8DJr0YoP1DlrAgrKDS8yeqmTqDUXMiM5rM43lQ57KS1; + expires=Fri, 06 Oct 2023 15:25:22 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=zcqxjftnl66oplbb8i0diokz24qt5irp; expires=Fri, 21 Oct 2022 15:25:22 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/c33aa2f3-f20e-48e1-97fa-126cee70b924/parameters/be2bcee7-a562-48cb-8314-fff00dd35a28/ + - https://api.staging.cloudtruth.io/api/v1/projects/3d5c5263-dc2b-4cb4-b71a-7e820a822556/parameters/1f77a104-561e-459a-9dbc-095d0255f2db/ Vary: - Accept, Cookie, Origin Allow: @@ -329,11 +307,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/c33aa2f3-f20e-48e1-97fa-126cee70b924/parameters/be2bcee7-a562-48cb-8314-fff00dd35a28/","id":"be2bcee7-a562-48cb-8314-fff00dd35a28","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/c33aa2f3-f20e-48e1-97fa-126cee70b924/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T17:38:15.216107Z","modified_at":"2022-01-04T17:38:15.216107Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 17:38:15 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/3d5c5263-dc2b-4cb4-b71a-7e820a822556/parameters/1f77a104-561e-459a-9dbc-095d0255f2db/","id":"1f77a104-561e-459a-9dbc-095d0255f2db","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/3d5c5263-dc2b-4cb4-b71a-7e820a822556/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:25:22.790051Z","modified_at":"2022-10-07T15:25:22.790051Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:25:22 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/c33aa2f3-f20e-48e1-97fa-126cee70b924/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/3d5c5263-dc2b-4cb4-b71a-7e820a822556/parameters/ body: encoding: UTF-8 string: '{"name":"two","type":"string"}' @@ -341,7 +319,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -354,30 +332,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:38:15 GMT + - Fri, 07 Oct 2022 15:25:24 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=r8puuheM811ZY815/TCBNwD1T6b9WmXvL6IGpsK3UlxTJM3Y6mGfKAEFksPNWKqf1AIL6J7D0s0agsIBRK6dMKoVzzXU/2a3w949DGuylRj/US0gpmYMcLFE9S7O; - Expires=Tue, 11 Jan 2022 17:38:15 GMT; Path=/ - - AWSALBCORS=r8puuheM811ZY815/TCBNwD1T6b9WmXvL6IGpsK3UlxTJM3Y6mGfKAEFksPNWKqf1AIL6J7D0s0agsIBRK6dMKoVzzXU/2a3w949DGuylRj/US0gpmYMcLFE9S7O; - Expires=Tue, 11 Jan 2022 17:38:15 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=Yo1yem37alPiIV73Wru7woZ00yhBM8ynAnmrrqTGmjpllM3lOOEH4cNgS1wS2ZyUUBKK/hJwr945IMhhxuQwMmMBtggUlBdD/7OWXUmykvySe6EpHpSu6l9YRlgSCfLDnGYP6psjKL9NS0qRpsMif3sMASYbR0SebJzWiSXSy+f5; - Expires=Tue, 11 Jan 2022 17:38:15 GMT; Path=/ - - AWSALBTGCORS=Yo1yem37alPiIV73Wru7woZ00yhBM8ynAnmrrqTGmjpllM3lOOEH4cNgS1wS2ZyUUBKK/hJwr945IMhhxuQwMmMBtggUlBdD/7OWXUmykvySe6EpHpSu6l9YRlgSCfLDnGYP6psjKL9NS0qRpsMif3sMASYbR0SebJzWiSXSy+f5; - Expires=Tue, 11 Jan 2022 17:38:15 GMT; Path=/; SameSite=None; Secure - - csrftoken=zyZ3Bz4EWWIQgbC3HyswHU02jpXd6WU4FzcyJqZJ1mOwAR7SJ9EaApVefkGoqWlB; - expires=Tue, 03 Jan 2023 17:38:15 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=1vofvgaa2g7gx14mi8d2chakqoggnl8q; expires=Tue, 18 Jan 2022 17:38:15 + - AWSALB=mEoDlZjuLdaBa6rUu2F8UL1LdbGKmjsfszPZH5+blMSkuxG+A5ESePo0KdFV0Fn/poCyGexS+iFuzioabAjwoD51ew3BaAlO/jXDTH+oxOs9GPA6oJhttlz6E21C; + Expires=Fri, 14 Oct 2022 15:25:23 GMT; Path=/ + - AWSALBCORS=mEoDlZjuLdaBa6rUu2F8UL1LdbGKmjsfszPZH5+blMSkuxG+A5ESePo0KdFV0Fn/poCyGexS+iFuzioabAjwoD51ew3BaAlO/jXDTH+oxOs9GPA6oJhttlz6E21C; + Expires=Fri, 14 Oct 2022 15:25:23 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=78sn3SFSzweKl+A5gpwvF+59XeZR3wTFwazUR7TcpTRsUGcBra9fvDVNQt0y3qgJ2cvNbXMlP0HGeo43cwfiAr+N9AA+aLElSUJe7uPYlx5tjmJyTYAaTbXTyNzc4fkpD1UZYCq4bDyKR6ACciT8PHVIW9Uf5qjBdwLgyJs9FcaI; + Expires=Fri, 14 Oct 2022 15:25:23 GMT; Path=/ + - AWSALBTGCORS=78sn3SFSzweKl+A5gpwvF+59XeZR3wTFwazUR7TcpTRsUGcBra9fvDVNQt0y3qgJ2cvNbXMlP0HGeo43cwfiAr+N9AA+aLElSUJe7uPYlx5tjmJyTYAaTbXTyNzc4fkpD1UZYCq4bDyKR6ACciT8PHVIW9Uf5qjBdwLgyJs9FcaI; + Expires=Fri, 14 Oct 2022 15:25:23 GMT; Path=/; SameSite=None; Secure + - csrftoken=Z4kXt7Rx5uLhsL836l9YkROu65t05yDBJuxyjgeoXtuGTlo8l6JsY8JdNyO80Gig; + expires=Fri, 06 Oct 2023 15:25:24 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=kz168yzi20hvk05hebdr09qupxwxdk8s; expires=Fri, 21 Oct 2022 15:25:24 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/c33aa2f3-f20e-48e1-97fa-126cee70b924/parameters/e77081d3-f862-4518-a848-bb17fd8966f6/ + - https://api.staging.cloudtruth.io/api/v1/projects/3d5c5263-dc2b-4cb4-b71a-7e820a822556/parameters/2ba7459c-5557-43a8-97b0-ecd798ff787e/ Vary: - Accept, Cookie, Origin Allow: @@ -392,6 +370,6 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/c33aa2f3-f20e-48e1-97fa-126cee70b924/parameters/e77081d3-f862-4518-a848-bb17fd8966f6/","id":"e77081d3-f862-4518-a848-bb17fd8966f6","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/c33aa2f3-f20e-48e1-97fa-126cee70b924/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T17:38:15.834458Z","modified_at":"2022-01-04T17:38:15.834458Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 17:38:15 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/3d5c5263-dc2b-4cb4-b71a-7e820a822556/parameters/2ba7459c-5557-43a8-97b0-ecd798ff787e/","id":"2ba7459c-5557-43a8-97b0-ecd798ff787e","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/3d5c5263-dc2b-4cb4-b71a-7e820a822556/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:25:24.435802Z","modified_at":"2022-10-07T15:25:24.435802Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:25:24 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_templates/_template/gets_template.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_templates/_template/gets_template.yml index 61ff9b3..5fa31da 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_templates/_template/gets_template.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_templates/_template/gets_template.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -10,7 +10,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -23,25 +23,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:39:17 GMT + - Fri, 07 Oct 2022 15:31:28 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=iaGkJD7TxLP7kjac48urNXYRJvPDoqJ+3+SofTRiwX46WK7KmLvSnvCSUeUJb8jEaTOGp4Aa3/yYIu3nUmfzRsTJflIiUUn/qmM39C1t54lJdIcDRuOq9q0JX1j/; - Expires=Tue, 11 Jan 2022 17:39:16 GMT; Path=/ - - AWSALBCORS=iaGkJD7TxLP7kjac48urNXYRJvPDoqJ+3+SofTRiwX46WK7KmLvSnvCSUeUJb8jEaTOGp4Aa3/yYIu3nUmfzRsTJflIiUUn/qmM39C1t54lJdIcDRuOq9q0JX1j/; - Expires=Tue, 11 Jan 2022 17:39:16 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=appw54M4dFPFYOz7JPZWIdkfjLBW5nNrqed/Fus/rtqgnqnz0R+qwkTzQN+0K+E7LZK1J4xOd8QmPegNkWw68a/REgaYZbF+h+7M3uL2JqJrPsoXYxBbmPd/0XvqoAERf04y+uZW/X8lPetGRns/cZ2a4dQJX2TGIxN9OPHRbK3M; - Expires=Tue, 11 Jan 2022 17:39:16 GMT; Path=/ - - AWSALBTGCORS=appw54M4dFPFYOz7JPZWIdkfjLBW5nNrqed/Fus/rtqgnqnz0R+qwkTzQN+0K+E7LZK1J4xOd8QmPegNkWw68a/REgaYZbF+h+7M3uL2JqJrPsoXYxBbmPd/0XvqoAERf04y+uZW/X8lPetGRns/cZ2a4dQJX2TGIxN9OPHRbK3M; - Expires=Tue, 11 Jan 2022 17:39:16 GMT; Path=/; SameSite=None; Secure - - csrftoken=pDQ2W9PcrbE7zGcycUr3F9YkLMNP2gUzbHTGY03ESPbJ8y3luBFsWtzmqWuhQ5MF; - expires=Tue, 03 Jan 2023 17:39:16 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=l0jfuex0azqebmbph56c8b1n7wl0nsef; expires=Tue, 18 Jan 2022 17:39:16 + - AWSALB=QzHojUPeGmXMP+IaVtP6ozttSE6d2kEJWElUf53CYgkvm5t73UOmAZrXapRZUBMO4NeV8AUdtY8BhvqxfGXkEXz5iUpFrfcy1GNkEH585vOMlzGG1ehhHHO/JhIl; + Expires=Fri, 14 Oct 2022 15:31:27 GMT; Path=/ + - AWSALBCORS=QzHojUPeGmXMP+IaVtP6ozttSE6d2kEJWElUf53CYgkvm5t73UOmAZrXapRZUBMO4NeV8AUdtY8BhvqxfGXkEXz5iUpFrfcy1GNkEH585vOMlzGG1ehhHHO/JhIl; + Expires=Fri, 14 Oct 2022 15:31:27 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=2TzfrhLG5907zKr/Ch/uFsdkMBDjy4Xtee0FJ11fWVxG196yfhRY/yDasrE2+TeoaYugbzC5k7tFq7kIqPLv9cVubaKjnBM12YTc56xovzZtREYP7OFCp876kpFat2wPH2dB/uUMz++q5VOcPnrzkiVLMmA9bdwdTA7PRgz/sWvM; + Expires=Fri, 14 Oct 2022 15:31:27 GMT; Path=/ + - AWSALBTGCORS=2TzfrhLG5907zKr/Ch/uFsdkMBDjy4Xtee0FJ11fWVxG196yfhRY/yDasrE2+TeoaYugbzC5k7tFq7kIqPLv9cVubaKjnBM12YTc56xovzZtREYP7OFCp876kpFat2wPH2dB/uUMz++q5VOcPnrzkiVLMmA9bdwdTA7PRgz/sWvM; + Expires=Fri, 14 Oct 2022 15:31:27 GMT; Path=/; SameSite=None; Secure + - csrftoken=iRvPp67Dsx1oylqJ1U0WMXtWviR0S09yztYd8DQfRxSYkLnbMUAiS9EspVL2Lg04; + expires=Fri, 06 Oct 2023 15:31:28 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=8stj3ivdx3q2pmbrq4cbpzuwvdebaqgv; expires=Fri, 21 Oct 2022 15:31:28 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -59,23 +59,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/","id":"5be6b037-6306-4398-ae38-3f2eb3b6ec70","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:39:12.711650Z","modified_at":"2022-01-04T17:39:15.702932Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:39:16 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/","id":"25d1e833-a351-458e-ab6f-cb09ae6bc20d","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:30:36.977702Z","modified_at":"2022-10-07T15:30:36.977702Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:31:28 GMT - request: method: delete - uri: https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/25d1e833-a351-458e-ab6f-cb09ae6bc20d/ body: encoding: US-ASCII string: '' @@ -83,7 +72,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Authorization: - Api-Key Accept-Encoding: @@ -96,23 +85,23 @@ http_interactions: message: No Content headers: Date: - - Tue, 04 Jan 2022 17:39:17 GMT + - Fri, 07 Oct 2022 15:31:30 GMT Content-Length: - '0' Connection: - keep-alive Set-Cookie: - - AWSALB=SdCiqkNbRHNFHdr/C6gJv0bkadZrFjCCYWebTwDVY4QcEkYlF78ano2/kZ/pcl1Rd/+l75SVyHO4l8oTrB/1+/JAPHUhEae+8qGQJF2TqQLtsb2zgr/A19JVSVnD; - Expires=Tue, 11 Jan 2022 17:39:17 GMT; Path=/ - - AWSALBCORS=SdCiqkNbRHNFHdr/C6gJv0bkadZrFjCCYWebTwDVY4QcEkYlF78ano2/kZ/pcl1Rd/+l75SVyHO4l8oTrB/1+/JAPHUhEae+8qGQJF2TqQLtsb2zgr/A19JVSVnD; - Expires=Tue, 11 Jan 2022 17:39:17 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=arhgRI0/dBepHLmyPz/nJU4/JBHNyL9y8LzbZ5HPn23m0vLi7d85dR1nUfrB/t1r2RDoUBcDmsh7v4dRTvsCXcwLF+XFZynTStb0HvS8oPFY1lDJTjftN7B29+Up1iq0hSiiZr78rD5fki7lvg/fPYyjKQSPS4t0KeH0u91qnlff; - Expires=Tue, 11 Jan 2022 17:39:17 GMT; Path=/ - - AWSALBTGCORS=arhgRI0/dBepHLmyPz/nJU4/JBHNyL9y8LzbZ5HPn23m0vLi7d85dR1nUfrB/t1r2RDoUBcDmsh7v4dRTvsCXcwLF+XFZynTStb0HvS8oPFY1lDJTjftN7B29+Up1iq0hSiiZr78rD5fki7lvg/fPYyjKQSPS4t0KeH0u91qnlff; - Expires=Tue, 11 Jan 2022 17:39:17 GMT; Path=/; SameSite=None; Secure - - csrftoken=peG7TcRcbQ8dKXgRKIWjA2q0li2lebCPz5OtWhJPOIA4jd0uVHTuqJgSv1MjCxOC; - expires=Tue, 03 Jan 2023 17:39:17 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=r8f3hjtzx1xb851tefxeuaphp8669ct1; expires=Tue, 18 Jan 2022 17:39:17 + - AWSALB=4/Vs/CsLXOsdc/RGUU2EBx7FYqrdmTaRb0svs3pdq1ReKN0W2O2Dj97dsCefI8kTevtjCrcufC8QnVETnCmLW9iA0PpUHHUUUGuAenbnTrRa4FqOra8iFAsmO9hv; + Expires=Fri, 14 Oct 2022 15:31:28 GMT; Path=/ + - AWSALBCORS=4/Vs/CsLXOsdc/RGUU2EBx7FYqrdmTaRb0svs3pdq1ReKN0W2O2Dj97dsCefI8kTevtjCrcufC8QnVETnCmLW9iA0PpUHHUUUGuAenbnTrRa4FqOra8iFAsmO9hv; + Expires=Fri, 14 Oct 2022 15:31:28 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=M7LzsxhPbWz7344IBmgjggySqRVOjxuzQJ8TUjlBvAs+A8Bkl69e1AvoTu6XcLiKqlyMqRSTzSEpjvVQppb5mtN/uMz1didnzz6iKt9kf3REKEgkf7oLPe2mmsAN+Re7zSIOWZU+erEeuxnaU2e1hyuESNajvzR+fOm5LY82S1FJ; + Expires=Fri, 14 Oct 2022 15:31:28 GMT; Path=/ + - AWSALBTGCORS=M7LzsxhPbWz7344IBmgjggySqRVOjxuzQJ8TUjlBvAs+A8Bkl69e1AvoTu6XcLiKqlyMqRSTzSEpjvVQppb5mtN/uMz1didnzz6iKt9kf3REKEgkf7oLPe2mmsAN+Re7zSIOWZU+erEeuxnaU2e1hyuESNajvzR+fOm5LY82S1FJ; + Expires=Fri, 14 Oct 2022 15:31:28 GMT; Path=/; SameSite=None; Secure + - csrftoken=qScqhnY3GKwh1WwXwrziMBHomo6uSvylus3yCiUsLrmagUVIg9nR9QOylpfZaDAq; + expires=Fri, 06 Oct 2023 15:31:30 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=wlyq4tnr9twr57acwic7sedw2jgh8e6c; expires=Fri, 21 Oct 2022 15:31:30 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -131,10 +120,10 @@ http_interactions: body: encoding: UTF-8 string: '' - recorded_at: Tue, 04 Jan 2022 17:39:17 GMT + recorded_at: Fri, 07 Oct 2022 15:31:29 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: UTF-8 string: '{"name":"TestProject"}' @@ -142,7 +131,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -155,30 +144,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:18 GMT + - Fri, 07 Oct 2022 15:31:31 GMT Content-Type: - application/json Content-Length: - - '304' + - '365' Connection: - keep-alive Set-Cookie: - - AWSALB=1koFwVQKVshHXMeglX9TKdyzrrknRAxV6pyA1fGlv5y/fl8PMC0SNb/7ai9HRlSRJ3heITEBKghnycys7yFy6zQ8CWKq+KL7EWovl+bzHnyEeXe4+viOcENl1IEh; - Expires=Tue, 11 Jan 2022 17:39:17 GMT; Path=/ - - AWSALBCORS=1koFwVQKVshHXMeglX9TKdyzrrknRAxV6pyA1fGlv5y/fl8PMC0SNb/7ai9HRlSRJ3heITEBKghnycys7yFy6zQ8CWKq+KL7EWovl+bzHnyEeXe4+viOcENl1IEh; - Expires=Tue, 11 Jan 2022 17:39:17 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=eioRxl+uvCbwUknP/7hFBKjw7in/vI5YbI+SFlgkWnUWB7j6Etimx5FbPQIGetWoh2c7qNR4+gh/eAc91IIzhDvnTww87hSYH9jj9NFDffvQ9dFszLrnn3OTxfIPF+njfVO1RUnZ2xyLVVnqjYglBjkGD925ky5d7mrt6Ka7Skpx; - Expires=Tue, 11 Jan 2022 17:39:17 GMT; Path=/ - - AWSALBTGCORS=eioRxl+uvCbwUknP/7hFBKjw7in/vI5YbI+SFlgkWnUWB7j6Etimx5FbPQIGetWoh2c7qNR4+gh/eAc91IIzhDvnTww87hSYH9jj9NFDffvQ9dFszLrnn3OTxfIPF+njfVO1RUnZ2xyLVVnqjYglBjkGD925ky5d7mrt6Ka7Skpx; - Expires=Tue, 11 Jan 2022 17:39:17 GMT; Path=/; SameSite=None; Secure - - csrftoken=d4dQjsI3WLtzuC0b7rqR1UEIZo8ZVVvVOjMqWDlkteivxd5QAD9yxwkoomKscoeh; - expires=Tue, 03 Jan 2023 17:39:18 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=y9d4oia0a5i7uubnktwbrytzhqi1upc2; expires=Tue, 18 Jan 2022 17:39:18 + - AWSALB=jin8NHgkq3DlEpl7eivHs1CM8E9RjrDZ0yMDgyvCS5MqqWChU9hgc8q7crKoKnxzG9CKr7WYlnmh8HGq9grLAEdiaj4Dl+pnJfYdvpQ+q7vOT+Riuwi2uocH6h5K; + Expires=Fri, 14 Oct 2022 15:31:30 GMT; Path=/ + - AWSALBCORS=jin8NHgkq3DlEpl7eivHs1CM8E9RjrDZ0yMDgyvCS5MqqWChU9hgc8q7crKoKnxzG9CKr7WYlnmh8HGq9grLAEdiaj4Dl+pnJfYdvpQ+q7vOT+Riuwi2uocH6h5K; + Expires=Fri, 14 Oct 2022 15:31:30 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=mylhlxM0b6sRKR/JgG2vCW1JNtDuBrgGY9fLToqp0+YO/AXGi/UZYE3hFQ5U7jbiOxDkM22ofDmb2JHYIAdvFDtAnXpkGhDoVeBiGsLJygE+KaiadNEobLW89eAKQwOrtw9LlfqTddahAcpzYXC0PivqLuhjqC3at5Q3l4giteTu; + Expires=Fri, 14 Oct 2022 15:31:30 GMT; Path=/ + - AWSALBTGCORS=mylhlxM0b6sRKR/JgG2vCW1JNtDuBrgGY9fLToqp0+YO/AXGi/UZYE3hFQ5U7jbiOxDkM22ofDmb2JHYIAdvFDtAnXpkGhDoVeBiGsLJygE+KaiadNEobLW89eAKQwOrtw9LlfqTddahAcpzYXC0PivqLuhjqC3at5Q3l4giteTu; + Expires=Fri, 14 Oct 2022 15:31:30 GMT; Path=/; SameSite=None; Secure + - csrftoken=wZ94NfBqvxJYUFfgX4Z4FrvpeVSbWsuGQHQwKXAmURvsJalZVrDQQWXHvmoEAnU5; + expires=Fri, 06 Oct 2023 15:31:31 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=7o69irchbxpal6vtasbbcnw7fdm31pt1; expires=Fri, 21 Oct 2022 15:31:31 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/ + - https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/ Vary: - Accept, Cookie, Origin Allow: @@ -193,11 +182,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/","id":"273c3075-06ce-450b-afa6-245a8bee436f","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:39:18.342616Z","modified_at":"2022-01-04T17:39:18.342616Z"}' - recorded_at: Tue, 04 Jan 2022 17:39:18 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/","id":"40bc65f5-3378-486d-971e-b4f543c57b1e","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:31:31.291894Z","modified_at":"2022-10-07T15:31:31.291894Z"}' + recorded_at: Fri, 07 Oct 2022 15:31:31 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -205,7 +194,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -218,25 +207,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:39:18 GMT + - Fri, 07 Oct 2022 15:31:33 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=C9jzZ2equYw0y4yMdbz9qc6zavZwEcoOCCaWjOlBN92Ra+AL7y5TFDfDHYnKOH6bbJEXC8QBN96lRcYsz+EtamK8WrAoywPO+E6+2dxU/k/c4oaepwitShx/YmAS; - Expires=Tue, 11 Jan 2022 17:39:18 GMT; Path=/ - - AWSALBCORS=C9jzZ2equYw0y4yMdbz9qc6zavZwEcoOCCaWjOlBN92Ra+AL7y5TFDfDHYnKOH6bbJEXC8QBN96lRcYsz+EtamK8WrAoywPO+E6+2dxU/k/c4oaepwitShx/YmAS; - Expires=Tue, 11 Jan 2022 17:39:18 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=DpVMnL5IUOgyBbdSIUMulHY97kYGd6uEDX8/2uWygu2mqztoRKbH3jbVLrsB1Xj9+OXn4/CJaoegIBbznLLmjkWpjXSq25B9SlO7wCC0q2l+5IwxJyNG4zFTi9r0kJuAZ4eJ+EpYAIvY7PBulf8wZf/HjjQv3BVCXwTu10eW7UYm; - Expires=Tue, 11 Jan 2022 17:39:18 GMT; Path=/ - - AWSALBTGCORS=DpVMnL5IUOgyBbdSIUMulHY97kYGd6uEDX8/2uWygu2mqztoRKbH3jbVLrsB1Xj9+OXn4/CJaoegIBbznLLmjkWpjXSq25B9SlO7wCC0q2l+5IwxJyNG4zFTi9r0kJuAZ4eJ+EpYAIvY7PBulf8wZf/HjjQv3BVCXwTu10eW7UYm; - Expires=Tue, 11 Jan 2022 17:39:18 GMT; Path=/; SameSite=None; Secure - - csrftoken=oN87sDp3sPHuHSTvaL0AWUfo0U7kwzoItDZYAGiTeWk4nUwYMetqZBhgXCLqFf2Q; - expires=Tue, 03 Jan 2023 17:39:18 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=0wq9tchhsf16bojl6jc3dbikektzwqco; expires=Tue, 18 Jan 2022 17:39:18 + - AWSALB=BpFTf+oqPXdc725T6hNo8aXDxLLXtaZVua1dbW8VWubyfo9QBfvVI3zDn2MrDa5m9pXvH9oyMGc5J0P4/qKBq0E3t9+on8pU2rPfWEa4LSGFLVD2UAdqYrwWXlwz; + Expires=Fri, 14 Oct 2022 15:31:31 GMT; Path=/ + - AWSALBCORS=BpFTf+oqPXdc725T6hNo8aXDxLLXtaZVua1dbW8VWubyfo9QBfvVI3zDn2MrDa5m9pXvH9oyMGc5J0P4/qKBq0E3t9+on8pU2rPfWEa4LSGFLVD2UAdqYrwWXlwz; + Expires=Fri, 14 Oct 2022 15:31:31 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=CZeRui6bplS8X4DO1GeJVN0R7Gp6vzeTy8j0zjTAD+lUbebNohoGDDnW7zyNdavFdYFHddWxEzA+H0favC1fmxwuzgP09lyLJbHnG40WKHZvAZDOKaZDypldvDK9pnIXuQfXPWxGjJ3RQN0PiK2jKMYt6ek43JQ/xd50kMJhLJwv; + Expires=Fri, 14 Oct 2022 15:31:31 GMT; Path=/ + - AWSALBTGCORS=CZeRui6bplS8X4DO1GeJVN0R7Gp6vzeTy8j0zjTAD+lUbebNohoGDDnW7zyNdavFdYFHddWxEzA+H0favC1fmxwuzgP09lyLJbHnG40WKHZvAZDOKaZDypldvDK9pnIXuQfXPWxGjJ3RQN0PiK2jKMYt6ek43JQ/xd50kMJhLJwv; + Expires=Fri, 14 Oct 2022 15:31:31 GMT; Path=/; SameSite=None; Secure + - csrftoken=iNKDpt7O3WKx6bSIX4DabnWGm9rD3zwz4kWpkqFDIL6E8TYtLs03qour87ntKGEc; + expires=Fri, 06 Oct 2023 15:31:33 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ba04z4mdkphlw0ceao472f8hvksjqbqh; expires=Fri, 21 Oct 2022 15:31:33 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -254,23 +243,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/","id":"273c3075-06ce-450b-afa6-245a8bee436f","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:39:18.342616Z","modified_at":"2022-01-04T17:39:18.342616Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:39:18 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/","id":"40bc65f5-3378-486d-971e-b4f543c57b1e","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:31:31.291894Z","modified_at":"2022-10-07T15:31:31.291894Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:31:33 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/parameters/ body: encoding: UTF-8 string: '{"name":"one","type":"string"}' @@ -278,7 +256,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -291,30 +269,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:19 GMT + - Fri, 07 Oct 2022 15:31:35 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=HhmWiYAj8WHJkXry71NhfAvOhXq1UqfZpXnl8dyAZdHeOO9GvorHTl8te1BXj1NiLOsvV+tOl4ETohQYWsMnh+BQw0eg60uIZ59EzAQ3dgIDT7ASFPPlrpycYcyK; - Expires=Tue, 11 Jan 2022 17:39:19 GMT; Path=/ - - AWSALBCORS=HhmWiYAj8WHJkXry71NhfAvOhXq1UqfZpXnl8dyAZdHeOO9GvorHTl8te1BXj1NiLOsvV+tOl4ETohQYWsMnh+BQw0eg60uIZ59EzAQ3dgIDT7ASFPPlrpycYcyK; - Expires=Tue, 11 Jan 2022 17:39:19 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=z6M+7G+MDHNT8IPdmEzj/kMWLCNxPtfdyKMh5Mvy492o+OCTCHAOKLHrFMsGHRwXGJMIXALEle+ftyEbYQ0nOejv15fDRzi6A7xlPBhKG7IxF7bDgzC1xzPxflqqosi2w169kDkQ7d/iDh6pd2Deoa3tV/oeVmwFzswW23YQprfC; - Expires=Tue, 11 Jan 2022 17:39:19 GMT; Path=/ - - AWSALBTGCORS=z6M+7G+MDHNT8IPdmEzj/kMWLCNxPtfdyKMh5Mvy492o+OCTCHAOKLHrFMsGHRwXGJMIXALEle+ftyEbYQ0nOejv15fDRzi6A7xlPBhKG7IxF7bDgzC1xzPxflqqosi2w169kDkQ7d/iDh6pd2Deoa3tV/oeVmwFzswW23YQprfC; - Expires=Tue, 11 Jan 2022 17:39:19 GMT; Path=/; SameSite=None; Secure - - csrftoken=keRsA9Rqs8KpvUhbxqRVyo4E27iLLUkzgHAMfi8EEuXT4a2bK0MgQzmYKRdeulx4; - expires=Tue, 03 Jan 2023 17:39:19 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=c7fbj9wse9wop4g74ahjoa1kfwi9ftgb; expires=Tue, 18 Jan 2022 17:39:19 + - AWSALB=9yZ4CKAuB/s8/qCMF0dtDYYEFALMqOWIcLBGZ7No/4UDK4+8ewRx/Ui6g98UaczsERCTH4MTJDKVpNw0o843sWJ6kZ9CQnnlwfPSy6+jBtDLwK9r7LyinT3r5qKJ; + Expires=Fri, 14 Oct 2022 15:31:33 GMT; Path=/ + - AWSALBCORS=9yZ4CKAuB/s8/qCMF0dtDYYEFALMqOWIcLBGZ7No/4UDK4+8ewRx/Ui6g98UaczsERCTH4MTJDKVpNw0o843sWJ6kZ9CQnnlwfPSy6+jBtDLwK9r7LyinT3r5qKJ; + Expires=Fri, 14 Oct 2022 15:31:33 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=2+os9laRYCkeE2aDp5QeDz83Zq/+5aT+RaW7YNqAj4yObBF/jEWgF8zitzPr7EOnici0xA9ipR08GqLsXCYWbGP3oaN+r44I1rC2QDWFtAi35tqV8eXVi9LnBynJKoGmlc7tBOiAGEtD5sQ5O4r2Ut4V7xcgDdgblL4xAFFHWLfQ; + Expires=Fri, 14 Oct 2022 15:31:33 GMT; Path=/ + - AWSALBTGCORS=2+os9laRYCkeE2aDp5QeDz83Zq/+5aT+RaW7YNqAj4yObBF/jEWgF8zitzPr7EOnici0xA9ipR08GqLsXCYWbGP3oaN+r44I1rC2QDWFtAi35tqV8eXVi9LnBynJKoGmlc7tBOiAGEtD5sQ5O4r2Ut4V7xcgDdgblL4xAFFHWLfQ; + Expires=Fri, 14 Oct 2022 15:31:33 GMT; Path=/; SameSite=None; Secure + - csrftoken=zQwI6dJC634kfM3pHXbPtj7aIQbSDK63KNbMeMYQrfVX8cdBz9NFn2wFQUtRg2d7; + expires=Fri, 06 Oct 2023 15:31:35 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=4qs73ndx65jc65l8qfrw9bb7ywug00yk; expires=Fri, 21 Oct 2022 15:31:35 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/parameters/e4cebc4d-8590-45a7-95b9-df95f30e5dfd/ + - https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/parameters/2f5cb4d3-0168-4218-a717-2c00be7941e0/ Vary: - Accept, Cookie, Origin Allow: @@ -329,11 +307,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/parameters/e4cebc4d-8590-45a7-95b9-df95f30e5dfd/","id":"e4cebc4d-8590-45a7-95b9-df95f30e5dfd","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T17:39:19.407558Z","modified_at":"2022-01-04T17:39:19.407558Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:19 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/parameters/2f5cb4d3-0168-4218-a717-2c00be7941e0/","id":"2f5cb4d3-0168-4218-a717-2c00be7941e0","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:31:35.020462Z","modified_at":"2022-10-07T15:31:35.020462Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:31:35 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/parameters/ body: encoding: UTF-8 string: '{"name":"two","type":"string"}' @@ -341,7 +319,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -354,30 +332,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:20 GMT + - Fri, 07 Oct 2022 15:31:36 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=+bNYKvQfJcv9lKwK8sQun2BXkgT6KOhQEkT9UWGwgVfNwSzlocb+S0YvJu0D2IyjiXhe5QgK7cRdOXmoOKmVV4aCUB9MW8hstUbQDZx/COAWk9OzblMeUikSEXfN; - Expires=Tue, 11 Jan 2022 17:39:19 GMT; Path=/ - - AWSALBCORS=+bNYKvQfJcv9lKwK8sQun2BXkgT6KOhQEkT9UWGwgVfNwSzlocb+S0YvJu0D2IyjiXhe5QgK7cRdOXmoOKmVV4aCUB9MW8hstUbQDZx/COAWk9OzblMeUikSEXfN; - Expires=Tue, 11 Jan 2022 17:39:19 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=h8o+4pzNKrbrAoME8HHE+NRjUxb3nuzgQykuLF0l71ukyFxVHD6voQFDY8mQsBlfJGdu14MjjgWL/oha7qXdkEAnN/Lj06PHgzfLwOsEY4pswN5r7/PeZSk7vXZJtfLKFwcXEOupWjQodzTfmuaMISfcbJuj0vf+uSQH3ZpJHI5h; - Expires=Tue, 11 Jan 2022 17:39:19 GMT; Path=/ - - AWSALBTGCORS=h8o+4pzNKrbrAoME8HHE+NRjUxb3nuzgQykuLF0l71ukyFxVHD6voQFDY8mQsBlfJGdu14MjjgWL/oha7qXdkEAnN/Lj06PHgzfLwOsEY4pswN5r7/PeZSk7vXZJtfLKFwcXEOupWjQodzTfmuaMISfcbJuj0vf+uSQH3ZpJHI5h; - Expires=Tue, 11 Jan 2022 17:39:19 GMT; Path=/; SameSite=None; Secure - - csrftoken=2MsS5E3s0Cxq4VnOHjn9ishZwpfVM2tuS3p5Se9109RMFqtHJpmwDt0B9tBiQC5i; - expires=Tue, 03 Jan 2023 17:39:20 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=8wtszpr1sr6pzp6twtvuwq49mcljzbr7; expires=Tue, 18 Jan 2022 17:39:20 + - AWSALB=/u2LjqwCHWT0mkWmf/bNdcqyNrAsky+GyJrZ4XPfXSvQ/3r5LsrlBb8Sf1QaqjA6KBKUmQMCm74LpWaU2eRkLkIE5LwMHdN2uB/Sooz6yFWDO2qiWbDvRVQ3eeIB; + Expires=Fri, 14 Oct 2022 15:31:35 GMT; Path=/ + - AWSALBCORS=/u2LjqwCHWT0mkWmf/bNdcqyNrAsky+GyJrZ4XPfXSvQ/3r5LsrlBb8Sf1QaqjA6KBKUmQMCm74LpWaU2eRkLkIE5LwMHdN2uB/Sooz6yFWDO2qiWbDvRVQ3eeIB; + Expires=Fri, 14 Oct 2022 15:31:35 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=CMwjcdj4TcIvnLnv80RFYCuPUoc1ntD9I93L156JIfD/suRGaki/7sElSAFQfSZ5//UvUZZfFc9NUuRND++t8PEY3F4NdeN2/6Lwc/BZhAbEAxLPG9m5j31foBsIWpXQn0JpfVq3RA+/XVV5D2hJMWq4MopGESs++ervwdwCKPHs; + Expires=Fri, 14 Oct 2022 15:31:35 GMT; Path=/ + - AWSALBTGCORS=CMwjcdj4TcIvnLnv80RFYCuPUoc1ntD9I93L156JIfD/suRGaki/7sElSAFQfSZ5//UvUZZfFc9NUuRND++t8PEY3F4NdeN2/6Lwc/BZhAbEAxLPG9m5j31foBsIWpXQn0JpfVq3RA+/XVV5D2hJMWq4MopGESs++ervwdwCKPHs; + Expires=Fri, 14 Oct 2022 15:31:35 GMT; Path=/; SameSite=None; Secure + - csrftoken=edYAvnDrufqCefaoIYPscBq5TPB3pcnh0b7q4MNUaQWTdfQfG4PEOEQQjVqGpZLS; + expires=Fri, 06 Oct 2023 15:31:36 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=v1xeale9i3lvuxb3oohr11u63tikdudb; expires=Fri, 21 Oct 2022 15:31:36 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/parameters/4cd0d9cf-dd22-4f05-9ac4-912d48203962/ + - https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/parameters/a560c101-2f69-4bb9-9d5a-8eb0527c3f30/ Vary: - Accept, Cookie, Origin Allow: @@ -392,11 +370,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/parameters/4cd0d9cf-dd22-4f05-9ac4-912d48203962/","id":"4cd0d9cf-dd22-4f05-9ac4-912d48203962","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T17:39:20.131182Z","modified_at":"2022-01-04T17:39:20.131182Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:20 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/parameters/a560c101-2f69-4bb9-9d5a-8eb0527c3f30/","id":"a560c101-2f69-4bb9-9d5a-8eb0527c3f30","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:31:36.733319Z","modified_at":"2022-10-07T15:31:36.733319Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:31:36 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/templates/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/templates/ body: encoding: UTF-8 string: '{"name":"tone","body":"tmpl1 {{one}}"}' @@ -404,7 +382,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -417,30 +395,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:20 GMT + - Fri, 07 Oct 2022 15:31:38 GMT Content-Type: - application/json Content-Length: - - '771' + - '820' Connection: - keep-alive Set-Cookie: - - AWSALB=ze5LkSXEc1JoSW5a5AY9Dn2otCGAECXz0Uzgbb6NU5mKcxw2RDwIh8dVstN+lS32sn5GCl3s+YBGS/8q3ya7O9b3mmmVduGcyK3DgtjDGmlPfKDjrhh8UiqBfuAB; - Expires=Tue, 11 Jan 2022 17:39:20 GMT; Path=/ - - AWSALBCORS=ze5LkSXEc1JoSW5a5AY9Dn2otCGAECXz0Uzgbb6NU5mKcxw2RDwIh8dVstN+lS32sn5GCl3s+YBGS/8q3ya7O9b3mmmVduGcyK3DgtjDGmlPfKDjrhh8UiqBfuAB; - Expires=Tue, 11 Jan 2022 17:39:20 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=B7EFg3IdbNErDGrHsI/3p1PtvAYEtTfQDHcLLDYiWPeg2cLOW6jAFfN0pps09p2NF9ichcqS5IDlXe437n8YFv5AajGFP023b51W7qbySdCNqEs64SYjxF3PiwjOuppvEOwcYcQn+P2H24B2dNRDd0CcNmzHGVlg9FuKNMNAYeCF; - Expires=Tue, 11 Jan 2022 17:39:20 GMT; Path=/ - - AWSALBTGCORS=B7EFg3IdbNErDGrHsI/3p1PtvAYEtTfQDHcLLDYiWPeg2cLOW6jAFfN0pps09p2NF9ichcqS5IDlXe437n8YFv5AajGFP023b51W7qbySdCNqEs64SYjxF3PiwjOuppvEOwcYcQn+P2H24B2dNRDd0CcNmzHGVlg9FuKNMNAYeCF; - Expires=Tue, 11 Jan 2022 17:39:20 GMT; Path=/; SameSite=None; Secure - - csrftoken=WLs46VW48c0pucyc4bU1b3bby44yPeb5Opy9gWdeNTGm7728VIKvIucBNXbhGKbx; - expires=Tue, 03 Jan 2023 17:39:20 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=s5gtuarmkdk1saat50o37botgw44j2y4; expires=Tue, 18 Jan 2022 17:39:20 + - AWSALB=VA0i6SSfdbwZwTZd0596jaFTDFqA7uSbaIZOcfcCLQHMo7jZEYqCbffv/3Jc9RBbEDkmUex7eDGqclrFyEUcVOUhFvfLsloLvf9xu90aIUARwEBV5ZGYBSBFW6Cs; + Expires=Fri, 14 Oct 2022 15:31:36 GMT; Path=/ + - AWSALBCORS=VA0i6SSfdbwZwTZd0596jaFTDFqA7uSbaIZOcfcCLQHMo7jZEYqCbffv/3Jc9RBbEDkmUex7eDGqclrFyEUcVOUhFvfLsloLvf9xu90aIUARwEBV5ZGYBSBFW6Cs; + Expires=Fri, 14 Oct 2022 15:31:36 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=KzHi7MF62ZSy790ZM1JPB9OoqlEOCkeJmLXDuiIEHXFl61WlUvhqGLStj/KmoNrlZmO1s+E/ylKxpCzrUoIqzBfzvOBDCUzdD9MJR4q/HaNDf39ojAVn+yfvpaMEJ4UH7zSwOPdWi3UJgGpIQMzGYUDfTSqOmD9LbN8q+BAJ9xsa; + Expires=Fri, 14 Oct 2022 15:31:36 GMT; Path=/ + - AWSALBTGCORS=KzHi7MF62ZSy790ZM1JPB9OoqlEOCkeJmLXDuiIEHXFl61WlUvhqGLStj/KmoNrlZmO1s+E/ylKxpCzrUoIqzBfzvOBDCUzdD9MJR4q/HaNDf39ojAVn+yfvpaMEJ4UH7zSwOPdWi3UJgGpIQMzGYUDfTSqOmD9LbN8q+BAJ9xsa; + Expires=Fri, 14 Oct 2022 15:31:36 GMT; Path=/; SameSite=None; Secure + - csrftoken=3BYMqdsRQHDKxvS4SDLDBlrOoyVPiEQHcRQCKTdU6qIAnMy6qiX2rJ0RpxLRn37c; + expires=Fri, 06 Oct 2023 15:31:38 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=7zayvewf4wsoxi6qewtk92vgazzm1tst; expires=Fri, 21 Oct 2022 15:31:38 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/templates/c0e9520e-7639-46ba-a0f9-899eb229b1da/ + - https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/templates/4ddbc48a-edf7-4bf6-910f-7791332c3e2e/ Vary: - Accept, Cookie, Origin Allow: @@ -455,12 +433,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/templates/c0e9520e-7639-46ba-a0f9-899eb229b1da/","id":"c0e9520e-7639-46ba-a0f9-899eb229b1da","name":"tone","description":"","evaluated":false,"body":"tmpl1 - {{one}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/parameters/e4cebc4d-8590-45a7-95b9-df95f30e5dfd/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:39:20.846844Z","modified_at":"2022-01-04T17:39:20.846844Z","parameters":["https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/parameters/e4cebc4d-8590-45a7-95b9-df95f30e5dfd/"],"references":[],"referenced_by":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:20 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/templates/4ddbc48a-edf7-4bf6-910f-7791332c3e2e/","id":"4ddbc48a-edf7-4bf6-910f-7791332c3e2e","name":"tone","description":"","evaluated":false,"body":"tmpl1 + {{one}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/parameters/2f5cb4d3-0168-4218-a717-2c00be7941e0/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:31:38.363401Z","modified_at":"2022-10-07T15:31:38.363401Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/parameters/2f5cb4d3-0168-4218-a717-2c00be7941e0/"],"references":[],"referenced_by":[]}' + recorded_at: Fri, 07 Oct 2022 15:31:38 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/templates/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/templates/ body: encoding: UTF-8 string: '{"name":"ttwo","body":"tmpl2 {{two}}"}' @@ -468,7 +446,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -481,30 +459,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:21 GMT + - Fri, 07 Oct 2022 15:31:39 GMT Content-Type: - application/json Content-Length: - - '771' + - '820' Connection: - keep-alive Set-Cookie: - - AWSALB=VxZoZ+YwxvhdV70hw/IXXpO/urvk1kAERS4DtkyoDutz6epEV7Fiv9wT5Bkd1x7brIU3gj0nKkjA9dHyLxiNNgYmV1iLQ8Vrr+kGSdLC0FWhPfpf6bEyjJ71JWyD; - Expires=Tue, 11 Jan 2022 17:39:21 GMT; Path=/ - - AWSALBCORS=VxZoZ+YwxvhdV70hw/IXXpO/urvk1kAERS4DtkyoDutz6epEV7Fiv9wT5Bkd1x7brIU3gj0nKkjA9dHyLxiNNgYmV1iLQ8Vrr+kGSdLC0FWhPfpf6bEyjJ71JWyD; - Expires=Tue, 11 Jan 2022 17:39:21 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=eqNEgv0gG8wBBiBEWU6pgSwpYw8mpFypFt8ipQpxp9Fimsh1flyvyxmx6CGT+M9DVQM8knsOQvMbQCH2zp4wiTMJEzFYCIkRtXUW5JwXLMwKLPf8jCWxsH38tlr1Wq+D6zT2u5eNMG+9Yin4pULFd9g6nLg/1QnQwz5PLBmtjlQb; - Expires=Tue, 11 Jan 2022 17:39:21 GMT; Path=/ - - AWSALBTGCORS=eqNEgv0gG8wBBiBEWU6pgSwpYw8mpFypFt8ipQpxp9Fimsh1flyvyxmx6CGT+M9DVQM8knsOQvMbQCH2zp4wiTMJEzFYCIkRtXUW5JwXLMwKLPf8jCWxsH38tlr1Wq+D6zT2u5eNMG+9Yin4pULFd9g6nLg/1QnQwz5PLBmtjlQb; - Expires=Tue, 11 Jan 2022 17:39:21 GMT; Path=/; SameSite=None; Secure - - csrftoken=KaeAK65eJ2X95Z217ScBLOTLHfhiJHPsrxiY4R8SBijSsaUKWoCMtHARDbM5ZA2L; - expires=Tue, 03 Jan 2023 17:39:21 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=9p7z1rbjb3w3x3i25wgzu7emz7d9hruk; expires=Tue, 18 Jan 2022 17:39:21 + - AWSALB=cWTKoqoukQvDehnOuDav/1O6sqCy71z4CxjQsHrT7Ae6MsRG+eSdTJT5YCl7wqlw/k1U7hzq3gXF5+/HfqU+jEo2+86kqz0wPTfINHnWr4ANwu2IBN4YflpemkBA; + Expires=Fri, 14 Oct 2022 15:31:38 GMT; Path=/ + - AWSALBCORS=cWTKoqoukQvDehnOuDav/1O6sqCy71z4CxjQsHrT7Ae6MsRG+eSdTJT5YCl7wqlw/k1U7hzq3gXF5+/HfqU+jEo2+86kqz0wPTfINHnWr4ANwu2IBN4YflpemkBA; + Expires=Fri, 14 Oct 2022 15:31:38 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=nI7Q8ivLtCWhvA/joeEhSw32LxF3Z8bbuNxgvy93ex7cxVsQkb1BU1oXin90qw/a6ZHjfHIIQ/OBZQsnRUVP2qwrag2sMJZ2Gu7AzWqsOakAKFvyqzC3GIESINmA9L5FGLtT+ubJ2iTfGUVTNYFfHCuVCpsI5GoapJnIYJXpqaUZ; + Expires=Fri, 14 Oct 2022 15:31:38 GMT; Path=/ + - AWSALBTGCORS=nI7Q8ivLtCWhvA/joeEhSw32LxF3Z8bbuNxgvy93ex7cxVsQkb1BU1oXin90qw/a6ZHjfHIIQ/OBZQsnRUVP2qwrag2sMJZ2Gu7AzWqsOakAKFvyqzC3GIESINmA9L5FGLtT+ubJ2iTfGUVTNYFfHCuVCpsI5GoapJnIYJXpqaUZ; + Expires=Fri, 14 Oct 2022 15:31:38 GMT; Path=/; SameSite=None; Secure + - csrftoken=ny1egohqHeeK6NihcY8T5HulgrxGYfJwWc4MqliB5TMVk4aATrtnjnclWMlvsvlX; + expires=Fri, 06 Oct 2023 15:31:39 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=y5v9njgtep4vy4goluv2h4ymko20aly4; expires=Fri, 21 Oct 2022 15:31:39 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/templates/3ad11e2c-2130-4b11-b36b-43b603e8c4ce/ + - https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/templates/95565c8c-d7cd-44cb-8d63-6f9f291399b6/ Vary: - Accept, Cookie, Origin Allow: @@ -519,12 +497,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/templates/3ad11e2c-2130-4b11-b36b-43b603e8c4ce/","id":"3ad11e2c-2130-4b11-b36b-43b603e8c4ce","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 - {{two}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/parameters/4cd0d9cf-dd22-4f05-9ac4-912d48203962/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:39:21.618720Z","modified_at":"2022-01-04T17:39:21.618720Z","parameters":["https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/parameters/4cd0d9cf-dd22-4f05-9ac4-912d48203962/"],"references":[],"referenced_by":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:21 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/templates/95565c8c-d7cd-44cb-8d63-6f9f291399b6/","id":"95565c8c-d7cd-44cb-8d63-6f9f291399b6","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 + {{two}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/parameters/a560c101-2f69-4bb9-9d5a-8eb0527c3f30/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:31:39.914237Z","modified_at":"2022-10-07T15:31:39.914237Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/parameters/a560c101-2f69-4bb9-9d5a-8eb0527c3f30/"],"references":[],"referenced_by":[]}' + recorded_at: Fri, 07 Oct 2022 15:31:39 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/environments/ + uri: https://api.staging.cloudtruth.io/api/v1/environments/ body: encoding: US-ASCII string: '' @@ -532,7 +510,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -545,25 +523,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:39:22 GMT + - Fri, 07 Oct 2022 15:31:41 GMT Content-Type: - application/json Content-Length: - - '4139' + - '2085' Connection: - keep-alive Set-Cookie: - - AWSALB=ymfeD0qxoxUQNxFM2A3hi7coyEUyIGocRdayy+HrdC2UvAtr681YuAOr0W3Etn2arofCU18RLK+v8hH6FtpZiBOAjKlVUOYj3cirOy/ZGqCNbUukQwSVC6nRfd0u; - Expires=Tue, 11 Jan 2022 17:39:21 GMT; Path=/ - - AWSALBCORS=ymfeD0qxoxUQNxFM2A3hi7coyEUyIGocRdayy+HrdC2UvAtr681YuAOr0W3Etn2arofCU18RLK+v8hH6FtpZiBOAjKlVUOYj3cirOy/ZGqCNbUukQwSVC6nRfd0u; - Expires=Tue, 11 Jan 2022 17:39:21 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=B+pU1rpHDTXGj7T1bmc1IDJamRrP51J8TV0CUywIB16bfnvwRkuULJ5OCqRFOFYPmLAOhESq/LpYq/+HMmVGqY5sG7kbV2LvylXQa7Ukmv4XwP6MiUmJDquQrT+iKoP7hz6Fa5T5GHwGOQDcwfZNOFTYZ7uPdY81BqdpENukvsLa; - Expires=Tue, 11 Jan 2022 17:39:21 GMT; Path=/ - - AWSALBTGCORS=B+pU1rpHDTXGj7T1bmc1IDJamRrP51J8TV0CUywIB16bfnvwRkuULJ5OCqRFOFYPmLAOhESq/LpYq/+HMmVGqY5sG7kbV2LvylXQa7Ukmv4XwP6MiUmJDquQrT+iKoP7hz6Fa5T5GHwGOQDcwfZNOFTYZ7uPdY81BqdpENukvsLa; - Expires=Tue, 11 Jan 2022 17:39:21 GMT; Path=/; SameSite=None; Secure - - csrftoken=kO9IleyQdjBsS6pxwrH5YBXw2MaVTn0ZaX9ERLSsGACj2VADanYP56YW9NQ6KxS3; - expires=Tue, 03 Jan 2023 17:39:22 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=lmtfo2w4o7h4j53zx094629qwevewm4b; expires=Tue, 18 Jan 2022 17:39:22 + - AWSALB=M+t2gtWOTKDk8vlogbI2HT2hFB+LwW5QAM4xTBJY0stzT87eTMSGNk1JfzEBq1DNWl16jOc7lhHn+AmlFz89jTLX27RcySbU7uoRiDGbi8nuRx8xGH/ezHmtDXs8; + Expires=Fri, 14 Oct 2022 15:31:40 GMT; Path=/ + - AWSALBCORS=M+t2gtWOTKDk8vlogbI2HT2hFB+LwW5QAM4xTBJY0stzT87eTMSGNk1JfzEBq1DNWl16jOc7lhHn+AmlFz89jTLX27RcySbU7uoRiDGbi8nuRx8xGH/ezHmtDXs8; + Expires=Fri, 14 Oct 2022 15:31:40 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=Susv0ESRHTMsHdQ7hSLcVnrbIBCI7w0TkQMapO7eYrmHC0OMtZTXUrkUdTbEWKH3+mTjineyT5am1V7Mn+c571fV8h4+/pj3D5M3uTZAMS6BgnkdfZ/hJd7NP6d90akOOXXA4LwSI0na3UCnz1AaWjp2C4GlRluUNRa1n8cqqCbq; + Expires=Fri, 14 Oct 2022 15:31:40 GMT; Path=/ + - AWSALBTGCORS=Susv0ESRHTMsHdQ7hSLcVnrbIBCI7w0TkQMapO7eYrmHC0OMtZTXUrkUdTbEWKH3+mTjineyT5am1V7Mn+c571fV8h4+/pj3D5M3uTZAMS6BgnkdfZ/hJd7NP6d90akOOXXA4LwSI0na3UCnz1AaWjp2C4GlRluUNRa1n8cqqCbq; + Expires=Fri, 14 Oct 2022 15:31:40 GMT; Path=/; SameSite=None; Secure + - csrftoken=HaX37Gvc30KUdIkSmUKsQvFXuY8YqOQL7Uc8lOR52kNUfkSYfi5BsvSKN7WURgq3; + expires=Fri, 06 Oct 2023 15:31:41 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=b9pacd81abnungtgv0i8pb7sf9avj8qg; expires=Fri, 21 Oct 2022 15:31:41 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -581,24 +559,23 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":9,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","id":"e8bc190d-0354-4e66-91c9-64501e501ec5","name":"default","description":"The - auto-generated default environment.","parent":null,"children":["https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/"],"created_at":"2021-07-20T18:14:09.023022Z","modified_at":"2022-01-04T17:39:21.618720Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","id":"c4de304d-5dd4-4a41-80ec-9a469f1aa4f5","name":"development","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/"],"created_at":"2021-07-20T18:14:09.035255Z","modified_at":"2022-01-04T17:38:49.782969Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/","id":"12b9c81b-9002-423b-9ca7-22cece646d07","name":"dev-matt","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","children":[],"created_at":"2021-07-21T19:53:37.534082Z","modified_at":"2021-07-26T22:01:23.472634Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","id":"2281d9da-8376-4f45-baf2-372a71260dfa","name":"europe","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T19:53:47.438517Z","modified_at":"2021-07-26T22:01:29.331661Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","id":"c99d6ab9-4674-4f76-bb43-da0b19124e18","name":"local","description":"for - local development","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T19:53:50.000541Z","modified_at":"2021-07-26T22:01:32.150839Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","id":"ef133a2e-3c9c-4229-a509-e56332baff40","name":"ops","description":"The - ops environment - infrastructure that acts as the entry point to the other - environment''s infrastructure","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T20:05:10.325110Z","modified_at":"2021-07-26T22:01:35.184068Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","id":"cde7cf9d-8bf2-46cb-9e97-dee9b99e4335","name":"production","description":"for - real","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/"],"created_at":"2021-07-20T18:14:09.058957Z","modified_at":"2021-10-26T18:14:38.859067Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/","id":"e4399ff4-a962-451b-adfb-7e504ad6bb6d","name":"staging","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-20T18:14:09.047049Z","modified_at":"2021-07-26T18:46:21.385162Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/","id":"3afc0523-4722-4fa1-aaea-5d49beaa284d","name":"usa","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T20:05:24.767679Z","modified_at":"2021-07-26T18:44:51.186840Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:39:22 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","id":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","name":"default","description":"Default + environment, base for all environments.","parent":null,"children":["https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/"],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.112161Z","modified_at":"2022-06-02T17:13:09.641786Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","id":"8f2e37b9-b429-4987-bb85-abd24bd67274","name":"development","description":"Development + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.123839Z","modified_at":"2022-06-02T17:11:55.123839Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","id":"0663ac09-5883-452b-bc1a-00e3347fece5","name":"production","description":"Production + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.145580Z","modified_at":"2022-06-02T17:11:55.145580Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/","id":"fc970cc2-c24f-427d-9c7a-70acde9f1b64","name":"staging","description":"Staging + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.134547Z","modified_at":"2022-06-02T17:11:55.134547Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:31:41 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/parameters/e4cebc4d-8590-45a7-95b9-df95f30e5dfd/values/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/parameters/2f5cb4d3-0168-4218-a717-2c00be7941e0/values/ body: encoding: UTF-8 - string: '{"environment":"e8bc190d-0354-4e66-91c9-64501e501ec5","external":false,"internal_value":"defaultone"}' + string: '{"environment":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","external":false,"internal_value":"defaultone"}' headers: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -611,30 +588,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:23 GMT + - Fri, 07 Oct 2022 15:31:43 GMT Content-Type: - application/json Content-Length: - - '941' + - '993' Connection: - keep-alive Set-Cookie: - - AWSALB=M0rdri9Q9w76Y4gV8m9sQCM8XZj3e0z92kDFaiV8HMYbkyC8pfo6Pb2Q+gm5laaZVGBlKT3CGnt4iDqC8nBoDAgx3EHi5fbtUro5eA19W28ojbDWLQqIptZtF3gG; - Expires=Tue, 11 Jan 2022 17:39:22 GMT; Path=/ - - AWSALBCORS=M0rdri9Q9w76Y4gV8m9sQCM8XZj3e0z92kDFaiV8HMYbkyC8pfo6Pb2Q+gm5laaZVGBlKT3CGnt4iDqC8nBoDAgx3EHi5fbtUro5eA19W28ojbDWLQqIptZtF3gG; - Expires=Tue, 11 Jan 2022 17:39:22 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=fR+szXEfistxMGE5M+WEA6LXctKh3fOg8ePTM37gm0gOYliPu+kSmGIyn/eqmvs7RuFlVCepal90+n+nd/6smnghNunUqOSnlR+d+GJNbXLa608gRtGv+muleTGwvEOmg8aQAJvz+bjTTNN4yc8ZL8RbzEwvkjI1xKyrFAUx8sCU; - Expires=Tue, 11 Jan 2022 17:39:22 GMT; Path=/ - - AWSALBTGCORS=fR+szXEfistxMGE5M+WEA6LXctKh3fOg8ePTM37gm0gOYliPu+kSmGIyn/eqmvs7RuFlVCepal90+n+nd/6smnghNunUqOSnlR+d+GJNbXLa608gRtGv+muleTGwvEOmg8aQAJvz+bjTTNN4yc8ZL8RbzEwvkjI1xKyrFAUx8sCU; - Expires=Tue, 11 Jan 2022 17:39:22 GMT; Path=/; SameSite=None; Secure - - csrftoken=B0boJSLmYwAkNgCzDIW3vvYYPL37UtlaH3OnY1q2pscne3zNsC06xjwmVZV9Zn6e; - expires=Tue, 03 Jan 2023 17:39:23 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=rf9on6pjz05ciuu7jrne65cbrowlh32r; expires=Tue, 18 Jan 2022 17:39:23 + - AWSALB=v8XypaELqLKZbOlPL7V0dV3seHLMKAy7TPDbcV5g9ZUFhci6PmnTIZ7ZUyUlnXzZnFhPXyla1Iog7KewgxKbrpwX66n7NfqjOXSl2Gbxd3eYpwveHEVgi+ApOSgF; + Expires=Fri, 14 Oct 2022 15:31:41 GMT; Path=/ + - AWSALBCORS=v8XypaELqLKZbOlPL7V0dV3seHLMKAy7TPDbcV5g9ZUFhci6PmnTIZ7ZUyUlnXzZnFhPXyla1Iog7KewgxKbrpwX66n7NfqjOXSl2Gbxd3eYpwveHEVgi+ApOSgF; + Expires=Fri, 14 Oct 2022 15:31:41 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=WSRXZqppOerCnM13vDAxA23C+nxgIC3WPDBq6GqAGtlzZaecglvgL62NcNbljTw7hAKEPuXUUWQsNBaoP1I+AxOfx66MZ5jR5ORyW4+qehkdP6SFnvf1DY91EMzvPFej7xqpGIz6sVV/wfd4cUJqAGB6OR23hsHKiCWNpiC4FzCy; + Expires=Fri, 14 Oct 2022 15:31:41 GMT; Path=/ + - AWSALBTGCORS=WSRXZqppOerCnM13vDAxA23C+nxgIC3WPDBq6GqAGtlzZaecglvgL62NcNbljTw7hAKEPuXUUWQsNBaoP1I+AxOfx66MZ5jR5ORyW4+qehkdP6SFnvf1DY91EMzvPFej7xqpGIz6sVV/wfd4cUJqAGB6OR23hsHKiCWNpiC4FzCy; + Expires=Fri, 14 Oct 2022 15:31:41 GMT; Path=/; SameSite=None; Secure + - csrftoken=j2OEmIOTcFrZz53HXkMxsx0eWa3qDfWjY6fB1Oizd2kSanqvI7CKww3RCSmZzKCY; + expires=Fri, 06 Oct 2023 15:31:43 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=5e7j680gq6nucpyty8lnui8id3abcuey; expires=Fri, 21 Oct 2022 15:31:43 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/parameters/e4cebc4d-8590-45a7-95b9-df95f30e5dfd/values/04206e27-596d-40d8-beb1-db5ef6951b6b/ + - https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/parameters/2f5cb4d3-0168-4218-a717-2c00be7941e0/values/f6b0d1ef-6215-4cd8-96ea-3e160873a262/ Vary: - Accept, Cookie, Origin Allow: @@ -649,11 +626,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/parameters/e4cebc4d-8590-45a7-95b9-df95f30e5dfd/values/04206e27-596d-40d8-beb1-db5ef6951b6b/","id":"04206e27-596d-40d8-beb1-db5ef6951b6b","environment":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","environment_name":"default","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/parameters/e4cebc4d-8590-45a7-95b9-df95f30e5dfd/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":"defaultone","interpolated":false,"value":"defaultone","evaluated":false,"secret":false,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T17:39:22.760186Z","modified_at":"2022-01-04T17:39:22.760186Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaultone"}' - recorded_at: Tue, 04 Jan 2022 17:39:23 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/parameters/2f5cb4d3-0168-4218-a717-2c00be7941e0/values/f6b0d1ef-6215-4cd8-96ea-3e160873a262/","id":"f6b0d1ef-6215-4cd8-96ea-3e160873a262","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/parameters/2f5cb4d3-0168-4218-a717-2c00be7941e0/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"defaultone","interpolated":false,"value":"defaultone","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:31:43.204081Z","modified_at":"2022-10-07T15:31:43.204081Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaultone"}' + recorded_at: Fri, 07 Oct 2022 15:31:43 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/templates/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/templates/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76 body: encoding: US-ASCII string: '' @@ -661,7 +638,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -674,25 +651,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:39:23 GMT + - Fri, 07 Oct 2022 15:31:45 GMT Content-Type: - application/json Content-Length: - - '1595' + - '1693' Connection: - keep-alive Set-Cookie: - - AWSALB=AAj9YnD/bL4Xdfm9NO1SwH0cLRLjokgI46gJ0B1+azfZ6LQvncUu3ne7Vud4AnAAi44k0OTYgv2xGv2rWm6CAhUQ0plv8SuAkP/d3EbD8oBNLLwNAkYpRmfWLlI4; - Expires=Tue, 11 Jan 2022 17:39:23 GMT; Path=/ - - AWSALBCORS=AAj9YnD/bL4Xdfm9NO1SwH0cLRLjokgI46gJ0B1+azfZ6LQvncUu3ne7Vud4AnAAi44k0OTYgv2xGv2rWm6CAhUQ0plv8SuAkP/d3EbD8oBNLLwNAkYpRmfWLlI4; - Expires=Tue, 11 Jan 2022 17:39:23 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=Gw2oOQwau0b3R3CQPmgYve/cmbs8A/8Nnwt6Vt2vcDf65oEMlydcHR8GdVglVmmTzKqayrV6sapH1qQlx2NtE/Nk9qOhL+hzqSmseYefZ7DSUwhPEao8AFvLlq+UJz0bUgCzJDExOcAU3xi9EWkLr4bOPHbimgqA/DHlc+cVCkm1; - Expires=Tue, 11 Jan 2022 17:39:23 GMT; Path=/ - - AWSALBTGCORS=Gw2oOQwau0b3R3CQPmgYve/cmbs8A/8Nnwt6Vt2vcDf65oEMlydcHR8GdVglVmmTzKqayrV6sapH1qQlx2NtE/Nk9qOhL+hzqSmseYefZ7DSUwhPEao8AFvLlq+UJz0bUgCzJDExOcAU3xi9EWkLr4bOPHbimgqA/DHlc+cVCkm1; - Expires=Tue, 11 Jan 2022 17:39:23 GMT; Path=/; SameSite=None; Secure - - csrftoken=UR2MjCU6eYzRNWvbz5AzFp4fDgyBtSAlGBBbiQYUOOxq27Hi0YtN44GCWFS7JoTG; - expires=Tue, 03 Jan 2023 17:39:23 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=hj5ujomk3br96kdh8axyxhznykv1kp0r; expires=Tue, 18 Jan 2022 17:39:23 + - AWSALB=+HCx98b5xGeNreZ6kziIWyknqcfdOQZmACGyyCoXAbIHswzLMTP5jF3tPJVF/tFytg8jdZrL0dZlPY++VGaQ7sldfZRFK0gGhwEFph8qYRlfemwGa6aPUuEDYAV2; + Expires=Fri, 14 Oct 2022 15:31:43 GMT; Path=/ + - AWSALBCORS=+HCx98b5xGeNreZ6kziIWyknqcfdOQZmACGyyCoXAbIHswzLMTP5jF3tPJVF/tFytg8jdZrL0dZlPY++VGaQ7sldfZRFK0gGhwEFph8qYRlfemwGa6aPUuEDYAV2; + Expires=Fri, 14 Oct 2022 15:31:43 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=I0biGgewNCYYLL5glNas4D6IgDUgmt9T65AdcQ6/tAsQJMlUDqilY/ZF96xsxfwJm7VHMRkHP40BICVdxWG4DiRkIWebSdjoG8iIlvVfDfr/3NDTuxbuRTH0510WP1uNTg2sUBPPICL8n8fKiTK3KYRewvvLFz0FNpEoFuVjvZVX; + Expires=Fri, 14 Oct 2022 15:31:43 GMT; Path=/ + - AWSALBTGCORS=I0biGgewNCYYLL5glNas4D6IgDUgmt9T65AdcQ6/tAsQJMlUDqilY/ZF96xsxfwJm7VHMRkHP40BICVdxWG4DiRkIWebSdjoG8iIlvVfDfr/3NDTuxbuRTH0510WP1uNTg2sUBPPICL8n8fKiTK3KYRewvvLFz0FNpEoFuVjvZVX; + Expires=Fri, 14 Oct 2022 15:31:43 GMT; Path=/; SameSite=None; Secure + - csrftoken=ANbLwQAzyB7C89pjAbOCqUHn5Z3eOyCrph1sFcxyb9bLo53drtlabwZOYI1bbNZa; + expires=Fri, 06 Oct 2023 15:31:45 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=odqmevy6knny6dmhwv3g8egtwsrhxiju; expires=Fri, 21 Oct 2022 15:31:45 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -710,13 +687,13 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/templates/c0e9520e-7639-46ba-a0f9-899eb229b1da/","id":"c0e9520e-7639-46ba-a0f9-899eb229b1da","name":"tone","description":"","evaluated":false,"body":"tmpl1 - {{one}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/parameters/e4cebc4d-8590-45a7-95b9-df95f30e5dfd/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:39:20.846844Z","modified_at":"2022-01-04T17:39:20.846844Z","parameters":["https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/parameters/e4cebc4d-8590-45a7-95b9-df95f30e5dfd/"],"references":[],"referenced_by":[]},{"url":"https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/templates/3ad11e2c-2130-4b11-b36b-43b603e8c4ce/","id":"3ad11e2c-2130-4b11-b36b-43b603e8c4ce","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 - {{two}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/parameters/4cd0d9cf-dd22-4f05-9ac4-912d48203962/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:39:21.618720Z","modified_at":"2022-01-04T17:39:21.618720Z","parameters":["https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/parameters/4cd0d9cf-dd22-4f05-9ac4-912d48203962/"],"references":[],"referenced_by":[]}]}' - recorded_at: Tue, 04 Jan 2022 17:39:23 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/templates/4ddbc48a-edf7-4bf6-910f-7791332c3e2e/","id":"4ddbc48a-edf7-4bf6-910f-7791332c3e2e","name":"tone","description":"","evaluated":false,"body":"tmpl1 + {{one}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/parameters/2f5cb4d3-0168-4218-a717-2c00be7941e0/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:31:38.363401Z","modified_at":"2022-10-07T15:31:38.363401Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/parameters/2f5cb4d3-0168-4218-a717-2c00be7941e0/"],"references":[],"referenced_by":[]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/templates/95565c8c-d7cd-44cb-8d63-6f9f291399b6/","id":"95565c8c-d7cd-44cb-8d63-6f9f291399b6","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 + {{two}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/parameters/a560c101-2f69-4bb9-9d5a-8eb0527c3f30/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:31:39.914237Z","modified_at":"2022-10-07T15:31:39.914237Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/parameters/a560c101-2f69-4bb9-9d5a-8eb0527c3f30/"],"references":[],"referenced_by":[]}]}' + recorded_at: Fri, 07 Oct 2022 15:31:45 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/templates/c0e9520e-7639-46ba-a0f9-899eb229b1da/?environment=e8bc190d-0354-4e66-91c9-64501e501ec5 + uri: https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/templates/4ddbc48a-edf7-4bf6-910f-7791332c3e2e/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76 body: encoding: US-ASCII string: '' @@ -724,7 +701,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -737,25 +714,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:39:24 GMT + - Fri, 07 Oct 2022 15:31:47 GMT Content-Type: - application/json Content-Length: - - '774' + - '823' Connection: - keep-alive Set-Cookie: - - AWSALB=O9YU5Zq5vHwIaN0oeFML0NOyLwQbjPv3J42RX9uLQ+ILYyxx5IPjg+9s7thBZpU4HGj7YpJ8Vxh8UuJXLcJMJecIqCSGVTawP2RQT9HT6ecdJe+icUpfYRx9c6gz; - Expires=Tue, 11 Jan 2022 17:39:24 GMT; Path=/ - - AWSALBCORS=O9YU5Zq5vHwIaN0oeFML0NOyLwQbjPv3J42RX9uLQ+ILYyxx5IPjg+9s7thBZpU4HGj7YpJ8Vxh8UuJXLcJMJecIqCSGVTawP2RQT9HT6ecdJe+icUpfYRx9c6gz; - Expires=Tue, 11 Jan 2022 17:39:24 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=+qdNr7rK2pAyj9VQ8Hxh5FbfNuaq4HQuENp2JS54nUNk6fH/veaFIhD/O9lyHldb7rYUOVsIrYEhalhMbHFqFRjD9hCF2LRpPGqKakXTmxulb4KSPcd4cO+yeJoIx9fkYvWo1VrAs/FHh3n5IgPMM6P6TtG7msk5r0SoRGFw5kHF; - Expires=Tue, 11 Jan 2022 17:39:24 GMT; Path=/ - - AWSALBTGCORS=+qdNr7rK2pAyj9VQ8Hxh5FbfNuaq4HQuENp2JS54nUNk6fH/veaFIhD/O9lyHldb7rYUOVsIrYEhalhMbHFqFRjD9hCF2LRpPGqKakXTmxulb4KSPcd4cO+yeJoIx9fkYvWo1VrAs/FHh3n5IgPMM6P6TtG7msk5r0SoRGFw5kHF; - Expires=Tue, 11 Jan 2022 17:39:24 GMT; Path=/; SameSite=None; Secure - - csrftoken=UwrWigv4xC894cqHm3lDNjp3QKVACTeULm7turT4oNpNbp1VvdypVmGS8kT9lPB4; - expires=Tue, 03 Jan 2023 17:39:24 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=2levwwgf78i36huu6lpu5okm8whe8imf; expires=Tue, 18 Jan 2022 17:39:24 + - AWSALB=3ZrBW7GldECAljbT2WRU4y3EVN/DclFSIlclGkxmyjvoRrswcqzJ4B+cdXlSQ4BYreXDtgEn/84fqAHtmJKGImOxsfMVnULrEz3h+YUuxBUFjnUQBzPtGDyJFVpR; + Expires=Fri, 14 Oct 2022 15:31:45 GMT; Path=/ + - AWSALBCORS=3ZrBW7GldECAljbT2WRU4y3EVN/DclFSIlclGkxmyjvoRrswcqzJ4B+cdXlSQ4BYreXDtgEn/84fqAHtmJKGImOxsfMVnULrEz3h+YUuxBUFjnUQBzPtGDyJFVpR; + Expires=Fri, 14 Oct 2022 15:31:45 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=UrrGVnUBRPA11cKSBymqUdS2bStHmx22N/Y6S+rvMlp2czxw7X2Od0BsVWWR0R+qZX8yWrOfFvHaBEwrSkEfnii8yFMLXKjk6BSNWgpZ2AX877TalhBpm+7fYEmSF5WhH7ue0m4atQG3XVpojy3tummib9/rDwOnSZDK6WwbMlLP; + Expires=Fri, 14 Oct 2022 15:31:45 GMT; Path=/ + - AWSALBTGCORS=UrrGVnUBRPA11cKSBymqUdS2bStHmx22N/Y6S+rvMlp2czxw7X2Od0BsVWWR0R+qZX8yWrOfFvHaBEwrSkEfnii8yFMLXKjk6BSNWgpZ2AX877TalhBpm+7fYEmSF5WhH7ue0m4atQG3XVpojy3tummib9/rDwOnSZDK6WwbMlLP; + Expires=Fri, 14 Oct 2022 15:31:45 GMT; Path=/; SameSite=None; Secure + - csrftoken=6DPnFRFrP2q8IWx6GoTXYQUhlP0h3zSm5HeNdHNYQxBVe7F3PNEG43WkV9krlW9s; + expires=Fri, 06 Oct 2023 15:31:47 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=fxjj5gk5oixjmkpgfwvpk54t3jmniwge; expires=Fri, 21 Oct 2022 15:31:47 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -773,7 +750,7 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/templates/c0e9520e-7639-46ba-a0f9-899eb229b1da/","id":"c0e9520e-7639-46ba-a0f9-899eb229b1da","name":"tone","description":"","evaluated":false,"body":"tmpl1 - defaultone","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/parameters/e4cebc4d-8590-45a7-95b9-df95f30e5dfd/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:39:20.846844Z","modified_at":"2022-01-04T17:39:20.846844Z","parameters":["https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/parameters/e4cebc4d-8590-45a7-95b9-df95f30e5dfd/"],"references":[],"referenced_by":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:24 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/templates/4ddbc48a-edf7-4bf6-910f-7791332c3e2e/","id":"4ddbc48a-edf7-4bf6-910f-7791332c3e2e","name":"tone","description":"","evaluated":false,"body":"tmpl1 + defaultone","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/parameters/2f5cb4d3-0168-4218-a717-2c00be7941e0/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:31:38.363401Z","modified_at":"2022-10-07T15:31:38.363401Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/parameters/2f5cb4d3-0168-4218-a717-2c00be7941e0/"],"references":[],"referenced_by":[]}' + recorded_at: Fri, 07 Oct 2022 15:31:47 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_templates/_template/gets_template_by_tag.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_templates/_template/gets_template_by_tag.yml new file mode 100644 index 0000000..d892715 --- /dev/null +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_templates/_template/gets_template_by_tag.yml @@ -0,0 +1,1442 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 16:03:19 GMT + Content-Type: + - application/json + Content-Length: + - '439' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=W0+UxcRT03eAVx674XEIwyKVyhRR4UwhKFXq0hNopAfDl/AzCnGqXU95ffgbL7W1A0H4ZckTVqYQlLgFFiItMTqlUdpHn/tzp+X6HRi4MH00kUPcnD55dq97GUjo; + Expires=Fri, 14 Oct 2022 16:03:18 GMT; Path=/ + - AWSALBCORS=W0+UxcRT03eAVx674XEIwyKVyhRR4UwhKFXq0hNopAfDl/AzCnGqXU95ffgbL7W1A0H4ZckTVqYQlLgFFiItMTqlUdpHn/tzp+X6HRi4MH00kUPcnD55dq97GUjo; + Expires=Fri, 14 Oct 2022 16:03:18 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=DBA2QRkA0BBgX5/L/lt8tS++l1FQiq8lYn95Y4h/bBY/znBMTqdy7LqLX5IsCWMnKx0xDyf5suTXbZ0QOYt6DSUsTdfrhGl9MWnKnnBrc8LraLpv3sBTpd/mxHIs/lsbDPuc9OC+VCY9Bkb11wWFFFUOsgDOBqwLzPN6VolaKgjT; + Expires=Fri, 14 Oct 2022 16:03:18 GMT; Path=/ + - AWSALBTGCORS=DBA2QRkA0BBgX5/L/lt8tS++l1FQiq8lYn95Y4h/bBY/znBMTqdy7LqLX5IsCWMnKx0xDyf5suTXbZ0QOYt6DSUsTdfrhGl9MWnKnnBrc8LraLpv3sBTpd/mxHIs/lsbDPuc9OC+VCY9Bkb11wWFFFUOsgDOBqwLzPN6VolaKgjT; + Expires=Fri, 14 Oct 2022 16:03:18 GMT; Path=/; SameSite=None; Secure + - csrftoken=7uaRlCTBZn96PyUj8JSuwsOl75rdBscx6aCx99Hltnib6uAB4RQxmHC4Fw50mB1v; + expires=Fri, 06 Oct 2023 16:03:19 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=kw2jyqagzw4r4594mp2q3z8fp27exlb6; expires=Fri, 21 Oct 2022 16:03:19 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"count":1,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"}]}' + recorded_at: Fri, 07 Oct 2022 16:03:19 GMT +- request: + method: post + uri: https://api.staging.cloudtruth.io/api/v1/projects/ + body: + encoding: UTF-8 + string: '{"name":"TestProject"}' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 201 + message: Created + headers: + Date: + - Fri, 07 Oct 2022 16:03:21 GMT + Content-Type: + - application/json + Content-Length: + - '365' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=QO6YiSDqofshbID34QrIF2N32VV9pM+J3paRg9C9eHmRNKWAIXwvPvdw1pgQfFySQeqru5Ayh57e+3mXuRUEXzpHXuI1mI9q9GXkIc2cuK/+kG4FCv+HuKWDhh0r; + Expires=Fri, 14 Oct 2022 16:03:19 GMT; Path=/ + - AWSALBCORS=QO6YiSDqofshbID34QrIF2N32VV9pM+J3paRg9C9eHmRNKWAIXwvPvdw1pgQfFySQeqru5Ayh57e+3mXuRUEXzpHXuI1mI9q9GXkIc2cuK/+kG4FCv+HuKWDhh0r; + Expires=Fri, 14 Oct 2022 16:03:19 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=BP4/+BpQ7HjGFhvI6DdRdzw0SmoEz8JR/aELHGZOqhE0WsQ/W3B4hAoEKVahbunWELxt7/Uy4Q3PKyJwLByWN9bBTBSplvyZpzhBbk+dhu+lncesNtzfkoqv6D1l8RqqyktlTB0ljWMi63spSbFvJqIpFt2Wg/vYbODQFz9lplSv; + Expires=Fri, 14 Oct 2022 16:03:19 GMT; Path=/ + - AWSALBTGCORS=BP4/+BpQ7HjGFhvI6DdRdzw0SmoEz8JR/aELHGZOqhE0WsQ/W3B4hAoEKVahbunWELxt7/Uy4Q3PKyJwLByWN9bBTBSplvyZpzhBbk+dhu+lncesNtzfkoqv6D1l8RqqyktlTB0ljWMi63spSbFvJqIpFt2Wg/vYbODQFz9lplSv; + Expires=Fri, 14 Oct 2022 16:03:19 GMT; Path=/; SameSite=None; Secure + - csrftoken=Z5E1XvNHxnJRVj1KE2p7Q3QDILDnYTO8aATnyIvvMO42c78ptwqYU06nI1WBIy6H; + expires=Fri, 06 Oct 2023 16:03:21 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=wo03hunehsyj8o7eeyrzvrrjigvbl4ie; expires=Fri, 21 Oct 2022 16:03:21 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Location: + - https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/","id":"439ebfc8-e75a-4c19-8372-1fb4f6cfe82f","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T16:03:21.432641Z","modified_at":"2022-10-07T16:03:21.432641Z"}' + recorded_at: Fri, 07 Oct 2022 16:03:21 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 16:03:22 GMT + Content-Type: + - application/json + Content-Length: + - '805' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=wd4dZniD7aKrPTn/aWlSS1J7H5S+8efDrZCsDlKtrdK56O2NkdaYYReQoVU7zHHfoC9QNic3AZGPG6SOLtGBJ59mTBaEJ+Qi7WLghLVI6cDg3fhWVbc0qhmGl7Ir; + Expires=Fri, 14 Oct 2022 16:03:21 GMT; Path=/ + - AWSALBCORS=wd4dZniD7aKrPTn/aWlSS1J7H5S+8efDrZCsDlKtrdK56O2NkdaYYReQoVU7zHHfoC9QNic3AZGPG6SOLtGBJ59mTBaEJ+Qi7WLghLVI6cDg3fhWVbc0qhmGl7Ir; + Expires=Fri, 14 Oct 2022 16:03:21 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=ZR9tKGsaTXiK7ug0gE0Ow8S67ObJKZyTy+CAaNvGASZb9wHfvJBu6lSUx9wreOb1cAdmb0a4VxSn1gLkKQlvlx6o8NsqnquSqQNGInTEBCo8FHG3UPm0DuZBUsaELwUPFOAvZcB+idQT46lXIxH4cAsCo+6hBCrBAI6lW4OI66oc; + Expires=Fri, 14 Oct 2022 16:03:21 GMT; Path=/ + - AWSALBTGCORS=ZR9tKGsaTXiK7ug0gE0Ow8S67ObJKZyTy+CAaNvGASZb9wHfvJBu6lSUx9wreOb1cAdmb0a4VxSn1gLkKQlvlx6o8NsqnquSqQNGInTEBCo8FHG3UPm0DuZBUsaELwUPFOAvZcB+idQT46lXIxH4cAsCo+6hBCrBAI6lW4OI66oc; + Expires=Fri, 14 Oct 2022 16:03:21 GMT; Path=/; SameSite=None; Secure + - csrftoken=eTEkRlhwNCSB31bs78RONQmYFwW6jaoxqCDXx195KqOfUs9TpC0jvIdzxguuYPQ4; + expires=Fri, 06 Oct 2023 16:03:22 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=vd8de9s841e0emvbh4nfuza5wwdf0jty; expires=Fri, 21 Oct 2022 16:03:22 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/","id":"439ebfc8-e75a-4c19-8372-1fb4f6cfe82f","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T16:03:21.432641Z","modified_at":"2022-10-07T16:03:21.432641Z"}]}' + recorded_at: Fri, 07 Oct 2022 16:03:22 GMT +- request: + method: post + uri: https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/ + body: + encoding: UTF-8 + string: '{"name":"one","type":"string"}' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 201 + message: Created + headers: + Date: + - Fri, 07 Oct 2022 16:03:24 GMT + Content-Type: + - application/json + Content-Length: + - '967' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=ickVmNnu/UPfkCnYUh8vyzbqKruRhgr7yLB/29JEb8/NJez38F1e2iiVTQwYfgkup2DPA7IQkiNsPgtlT3M/TNLLt+cT9sxnTUZ2Tx4LB9XSn0/dLMoGiYXTYqOK; + Expires=Fri, 14 Oct 2022 16:03:22 GMT; Path=/ + - AWSALBCORS=ickVmNnu/UPfkCnYUh8vyzbqKruRhgr7yLB/29JEb8/NJez38F1e2iiVTQwYfgkup2DPA7IQkiNsPgtlT3M/TNLLt+cT9sxnTUZ2Tx4LB9XSn0/dLMoGiYXTYqOK; + Expires=Fri, 14 Oct 2022 16:03:22 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=vK4BUiU6/XJUra8ginFNVi0NSyCzcgaqL7n5LAImTUoZsbYk+ENkG9ALqWiwypAQ1kYoswxE4uQo2G/QbkErMEkzFpfG2+SZeocXJsxkxbwMicAT9ZDAAbHOQow6IaUT3f3KXz7ANKujRe4d/n+V2aMs6IeAmVKgPPHqbUXbw23Q; + Expires=Fri, 14 Oct 2022 16:03:22 GMT; Path=/ + - AWSALBTGCORS=vK4BUiU6/XJUra8ginFNVi0NSyCzcgaqL7n5LAImTUoZsbYk+ENkG9ALqWiwypAQ1kYoswxE4uQo2G/QbkErMEkzFpfG2+SZeocXJsxkxbwMicAT9ZDAAbHOQow6IaUT3f3KXz7ANKujRe4d/n+V2aMs6IeAmVKgPPHqbUXbw23Q; + Expires=Fri, 14 Oct 2022 16:03:22 GMT; Path=/; SameSite=None; Secure + - csrftoken=59uG4stLub74mTYEPKobympTpLwSulZa3rVfnFYV4geHWcluYsVbL91zs4SpU9Kw; + expires=Fri, 06 Oct 2023 16:03:24 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=fb3crjfjklsgl739t0lsjil66wid7j14; expires=Fri, 21 Oct 2022 16:03:24 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Location: + - https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/","id":"f7c564f2-6ead-4299-8b63-e93c5058700e","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T16:03:24.778966Z","modified_at":"2022-10-07T16:03:24.778966Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 16:03:24 GMT +- request: + method: post + uri: https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/ + body: + encoding: UTF-8 + string: '{"name":"two","type":"string"}' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 201 + message: Created + headers: + Date: + - Fri, 07 Oct 2022 16:03:26 GMT + Content-Type: + - application/json + Content-Length: + - '967' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=xkt+QaN0qhyxJu7goM6qitILHjw/vs5qLSxdeffu3UgmuSo7o/wKFxaGC5UFoPK9T2LEptmyu/1GOEqpUxVwdHuSS+tbV8DY4MQfzHlqRyVGSTw0kCXeLYc/q+t3; + Expires=Fri, 14 Oct 2022 16:03:24 GMT; Path=/ + - AWSALBCORS=xkt+QaN0qhyxJu7goM6qitILHjw/vs5qLSxdeffu3UgmuSo7o/wKFxaGC5UFoPK9T2LEptmyu/1GOEqpUxVwdHuSS+tbV8DY4MQfzHlqRyVGSTw0kCXeLYc/q+t3; + Expires=Fri, 14 Oct 2022 16:03:24 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=Tdl7FYipBMLrl8HJAr3ZaYF9YFb+1iGmF5ofACTMn8IOthG4o+OCwEM5ZnxSpvmiHscDXBj4iwDkqJ127HROmylfW3HodvF0hlkC+cmzc8ZKJ66iAUL9Coufzmc1+BvORzJZxwaxCKWS8VLn1mRQ0WMY3FxDCXqEr1KrjJDIAoRy; + Expires=Fri, 14 Oct 2022 16:03:24 GMT; Path=/ + - AWSALBTGCORS=Tdl7FYipBMLrl8HJAr3ZaYF9YFb+1iGmF5ofACTMn8IOthG4o+OCwEM5ZnxSpvmiHscDXBj4iwDkqJ127HROmylfW3HodvF0hlkC+cmzc8ZKJ66iAUL9Coufzmc1+BvORzJZxwaxCKWS8VLn1mRQ0WMY3FxDCXqEr1KrjJDIAoRy; + Expires=Fri, 14 Oct 2022 16:03:24 GMT; Path=/; SameSite=None; Secure + - csrftoken=rhD95i35Q9sZEMzza4KTCFaEX71fPWmM35SQRkJt5PMuRNBrNKclYcFIRUyICA7X; + expires=Fri, 06 Oct 2023 16:03:26 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=90zgns5b3i3cqgyrkp3um8mpbyrisooc; expires=Fri, 21 Oct 2022 16:03:26 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Location: + - https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/db099422-1a7e-4de8-8e8d-c1277eb5f428/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/db099422-1a7e-4de8-8e8d-c1277eb5f428/","id":"db099422-1a7e-4de8-8e8d-c1277eb5f428","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T16:03:26.280632Z","modified_at":"2022-10-07T16:03:26.280632Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 16:03:26 GMT +- request: + method: post + uri: https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/ + body: + encoding: UTF-8 + string: '{"name":"tone","body":"tmpl1 {{one}}"}' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 201 + message: Created + headers: + Date: + - Fri, 07 Oct 2022 16:03:28 GMT + Content-Type: + - application/json + Content-Length: + - '820' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=E2ncwP/Gd7xUxJtpnezsFpBSXUBsKQkC0Ph62nvQn9riyebFmaYqmvyc8E2e9pemu2W4S9HzEB0siplhFzLm0gEdzGl2vAmO/ZqaSQxwaVLy7C1Hl2X/9LpFI+4V; + Expires=Fri, 14 Oct 2022 16:03:26 GMT; Path=/ + - AWSALBCORS=E2ncwP/Gd7xUxJtpnezsFpBSXUBsKQkC0Ph62nvQn9riyebFmaYqmvyc8E2e9pemu2W4S9HzEB0siplhFzLm0gEdzGl2vAmO/ZqaSQxwaVLy7C1Hl2X/9LpFI+4V; + Expires=Fri, 14 Oct 2022 16:03:26 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=MRPzd8VayMAfarABefiVVFrxdkc2RfYWVthFhMCSTHFZHWtaDRHxnn1rTyzLSNF/1KWoyOMJLKJx9mkGri6/oUSH7p7LX715Y3vh5AYz6zaCHAOCRb+NAWKJXVw6xplpTpB4jTCYKiJ9Z6kyCKjBXIRi/fJYMv06AY5WgKpU87zk; + Expires=Fri, 14 Oct 2022 16:03:26 GMT; Path=/ + - AWSALBTGCORS=MRPzd8VayMAfarABefiVVFrxdkc2RfYWVthFhMCSTHFZHWtaDRHxnn1rTyzLSNF/1KWoyOMJLKJx9mkGri6/oUSH7p7LX715Y3vh5AYz6zaCHAOCRb+NAWKJXVw6xplpTpB4jTCYKiJ9Z6kyCKjBXIRi/fJYMv06AY5WgKpU87zk; + Expires=Fri, 14 Oct 2022 16:03:26 GMT; Path=/; SameSite=None; Secure + - csrftoken=OQFKYpkvPHjSPqi2NnmSe7UyEYlbHnL9f77WaSWycESlThzr95FLgQqLrBPe9B9A; + expires=Fri, 06 Oct 2023 16:03:28 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ci7berksljilj2uqk45te51va7bnnn37; expires=Fri, 21 Oct 2022 16:03:28 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Location: + - https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/478d4d02-b3e8-42c2-93b4-0ee47165ec83/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/478d4d02-b3e8-42c2-93b4-0ee47165ec83/","id":"478d4d02-b3e8-42c2-93b4-0ee47165ec83","name":"tone","description":"","evaluated":false,"body":"tmpl1 + {{one}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T16:03:28.278052Z","modified_at":"2022-10-07T16:03:28.278052Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/"],"references":[],"referenced_by":[]}' + recorded_at: Fri, 07 Oct 2022 16:03:28 GMT +- request: + method: post + uri: https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/ + body: + encoding: UTF-8 + string: '{"name":"ttwo","body":"tmpl2 {{two}}"}' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 201 + message: Created + headers: + Date: + - Fri, 07 Oct 2022 16:03:29 GMT + Content-Type: + - application/json + Content-Length: + - '820' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=YI0DuapusiT/4vrxBvxa3KtA166CX90yyqnuFIptxNtsjz5wQ0KAfDUYZoV/sRsEwxg9jvdhzWAma/vvGkrpYQlNQ1W3sg2mXyABFtbc76jMybXnFt3+KPFQ1yvH; + Expires=Fri, 14 Oct 2022 16:03:28 GMT; Path=/ + - AWSALBCORS=YI0DuapusiT/4vrxBvxa3KtA166CX90yyqnuFIptxNtsjz5wQ0KAfDUYZoV/sRsEwxg9jvdhzWAma/vvGkrpYQlNQ1W3sg2mXyABFtbc76jMybXnFt3+KPFQ1yvH; + Expires=Fri, 14 Oct 2022 16:03:28 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=T1Hu5neXFA7aduXGKtJBmv+j9A2uZEry8b4xqCvdJ6F8YOnKr6KS4doTC3DPB8VMyhGgN3McNVGrDPcrfLhxDDKPYZ4SpsQcLdgRtopKWWxHcc5pebbnUBI9u2JmrJ3GaemEwdHKsE31SbOVJ1/xYgZ8llfUc/ih8rkIEgKcbsbx; + Expires=Fri, 14 Oct 2022 16:03:28 GMT; Path=/ + - AWSALBTGCORS=T1Hu5neXFA7aduXGKtJBmv+j9A2uZEry8b4xqCvdJ6F8YOnKr6KS4doTC3DPB8VMyhGgN3McNVGrDPcrfLhxDDKPYZ4SpsQcLdgRtopKWWxHcc5pebbnUBI9u2JmrJ3GaemEwdHKsE31SbOVJ1/xYgZ8llfUc/ih8rkIEgKcbsbx; + Expires=Fri, 14 Oct 2022 16:03:28 GMT; Path=/; SameSite=None; Secure + - csrftoken=Qaappgrmd0FdcEeMWL57O2iFtwCBycfoBvid6LghuktJkkDAYNvPP1wtkVD6RY1W; + expires=Fri, 06 Oct 2023 16:03:29 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=kyyglwtbm91rgdqdrkuasnvnvhd709ns; expires=Fri, 21 Oct 2022 16:03:29 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Location: + - https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/cd3f8482-108e-4ea1-a30d-0083cae24f44/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/cd3f8482-108e-4ea1-a30d-0083cae24f44/","id":"cd3f8482-108e-4ea1-a30d-0083cae24f44","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 + {{two}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/db099422-1a7e-4de8-8e8d-c1277eb5f428/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T16:03:29.817757Z","modified_at":"2022-10-07T16:03:29.817757Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/db099422-1a7e-4de8-8e8d-c1277eb5f428/"],"references":[],"referenced_by":[]}' + recorded_at: Fri, 07 Oct 2022 16:03:29 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/environments/ + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 16:03:31 GMT + Content-Type: + - application/json + Content-Length: + - '2085' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=e0EqIvCPzb8uPimBjexPnOtmgOe35/UZRRB+vgL4NJA2GaMctXxArbGCBkOhDiNUjlvE12QfypUCgje5oufNpUbduHQrTxv87BbYO0OQar4DGlqKTjo6QNZKyJ7k; + Expires=Fri, 14 Oct 2022 16:03:30 GMT; Path=/ + - AWSALBCORS=e0EqIvCPzb8uPimBjexPnOtmgOe35/UZRRB+vgL4NJA2GaMctXxArbGCBkOhDiNUjlvE12QfypUCgje5oufNpUbduHQrTxv87BbYO0OQar4DGlqKTjo6QNZKyJ7k; + Expires=Fri, 14 Oct 2022 16:03:30 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=iSR0wsyBrzsZc+lfI4uUXVV5ET3kGWMTvuMCMCMdyOSM41sdl7EPsixVl8SuRHrixL6HJo6CYvZ12IKr2IBL3xPKB5hDYInKLze57PIbrZW78g4te6f1pQUJY3bRyOjlDP9aXnyHnF138t0qWVbY6ARk1+C2fww4tCdMIXyaTmjY; + Expires=Fri, 14 Oct 2022 16:03:30 GMT; Path=/ + - AWSALBTGCORS=iSR0wsyBrzsZc+lfI4uUXVV5ET3kGWMTvuMCMCMdyOSM41sdl7EPsixVl8SuRHrixL6HJo6CYvZ12IKr2IBL3xPKB5hDYInKLze57PIbrZW78g4te6f1pQUJY3bRyOjlDP9aXnyHnF138t0qWVbY6ARk1+C2fww4tCdMIXyaTmjY; + Expires=Fri, 14 Oct 2022 16:03:30 GMT; Path=/; SameSite=None; Secure + - csrftoken=GdCGTK94CuDL1h5a0Mm3oxERHGMmv7HNbrIdrMcnSDB3a03vDxmb3qlBtP9kSWwd; + expires=Fri, 06 Oct 2023 16:03:31 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=sdu7u6jrhdi1tat3b7owo2wmt021ifq3; expires=Fri, 21 Oct 2022 16:03:31 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","id":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","name":"default","description":"Default + environment, base for all environments.","parent":null,"children":["https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/"],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.112161Z","modified_at":"2022-06-02T17:13:09.641786Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","id":"8f2e37b9-b429-4987-bb85-abd24bd67274","name":"development","description":"Development + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.123839Z","modified_at":"2022-06-02T17:11:55.123839Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","id":"0663ac09-5883-452b-bc1a-00e3347fece5","name":"production","description":"Production + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.145580Z","modified_at":"2022-06-02T17:11:55.145580Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/","id":"fc970cc2-c24f-427d-9c7a-70acde9f1b64","name":"staging","description":"Staging + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.134547Z","modified_at":"2022-06-02T17:11:55.134547Z"}]}' + recorded_at: Fri, 07 Oct 2022 16:03:31 GMT +- request: + method: post + uri: https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/values/ + body: + encoding: UTF-8 + string: '{"environment":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","external":false,"internal_value":"defaultone"}' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 201 + message: Created + headers: + Date: + - Fri, 07 Oct 2022 16:03:33 GMT + Content-Type: + - application/json + Content-Length: + - '993' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=oNAKyK1D82m9dBfVWMzOw5f7Bn34lfP4spkf4YdRQRZr2t3J7efOGrLQvyHElXaBMfKjsrdPAOzDh/ByBWBCphXbwxZyAfLJGyDbVLsmk8pFAqhvseijRr0HQzS/; + Expires=Fri, 14 Oct 2022 16:03:31 GMT; Path=/ + - AWSALBCORS=oNAKyK1D82m9dBfVWMzOw5f7Bn34lfP4spkf4YdRQRZr2t3J7efOGrLQvyHElXaBMfKjsrdPAOzDh/ByBWBCphXbwxZyAfLJGyDbVLsmk8pFAqhvseijRr0HQzS/; + Expires=Fri, 14 Oct 2022 16:03:31 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=nPa/35lDdmiFeeVJAQFfhvhyAWrZFCiTqfN6OBvMrfr7xZYW7Zwn2IgpfUYLQEaiZ0cRgR7dItFc/6Avd69yrSEgUB65L0OB326xjNRulxdvN8eWN1UmbXRkgFX7j8NPphrlT/KhuH4NKY4jo2PYvMPmCcJysIG2Oc3o83YCgt5R; + Expires=Fri, 14 Oct 2022 16:03:31 GMT; Path=/ + - AWSALBTGCORS=nPa/35lDdmiFeeVJAQFfhvhyAWrZFCiTqfN6OBvMrfr7xZYW7Zwn2IgpfUYLQEaiZ0cRgR7dItFc/6Avd69yrSEgUB65L0OB326xjNRulxdvN8eWN1UmbXRkgFX7j8NPphrlT/KhuH4NKY4jo2PYvMPmCcJysIG2Oc3o83YCgt5R; + Expires=Fri, 14 Oct 2022 16:03:31 GMT; Path=/; SameSite=None; Secure + - csrftoken=4C6CJo8Ny5lINNbjavUI6nhGs13KawTjdBdHWpfIhSenG1BQ8fFk02dJv1RAxF7R; + expires=Fri, 06 Oct 2023 16:03:33 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=wv0juvi8z78yuryuz1a6zc28at33y0vy; expires=Fri, 21 Oct 2022 16:03:33 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Location: + - https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/values/bae3c955-dfd6-4e40-b07c-c0e4310f0d46/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/values/bae3c955-dfd6-4e40-b07c-c0e4310f0d46/","id":"bae3c955-dfd6-4e40-b07c-c0e4310f0d46","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"defaultone","interpolated":false,"value":"defaultone","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T16:03:33.026505Z","modified_at":"2022-10-07T16:03:33.026505Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaultone"}' + recorded_at: Fri, 07 Oct 2022 16:03:33 GMT +- request: + method: post + uri: https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/db099422-1a7e-4de8-8e8d-c1277eb5f428/values/ + body: + encoding: UTF-8 + string: '{"environment":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","external":false,"internal_value":"defaulttwo"}' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 201 + message: Created + headers: + Date: + - Fri, 07 Oct 2022 16:03:34 GMT + Content-Type: + - application/json + Content-Length: + - '993' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=SCiXhShhficuhli9ZMemKVjjdlKUuoAa0TVUl4gJS2yQKHARoEdpCbtnxSwlhVsQmhwS+HhjpFYfl3Kd7EGZQX7tgg2ff+eQ55ixpWW4co+tt0jxxbQzHbuwXc4H; + Expires=Fri, 14 Oct 2022 16:03:33 GMT; Path=/ + - AWSALBCORS=SCiXhShhficuhli9ZMemKVjjdlKUuoAa0TVUl4gJS2yQKHARoEdpCbtnxSwlhVsQmhwS+HhjpFYfl3Kd7EGZQX7tgg2ff+eQ55ixpWW4co+tt0jxxbQzHbuwXc4H; + Expires=Fri, 14 Oct 2022 16:03:33 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=a+PuWDYz3UAcstq9/8dVZFhQZh93PFQ58FXjeMnhlvoKAk1ku7f6jn25IyZVTnP3WYmFN9XH+sLtgm2n75vnMPk96CTYbsIz7Mp/nNAsBo908eAHhy7RYyTX92MjmNwkS5UNk723NhFY0ffiFQS85q9D8b36DyuJqF4FTAQXHYkT; + Expires=Fri, 14 Oct 2022 16:03:33 GMT; Path=/ + - AWSALBTGCORS=a+PuWDYz3UAcstq9/8dVZFhQZh93PFQ58FXjeMnhlvoKAk1ku7f6jn25IyZVTnP3WYmFN9XH+sLtgm2n75vnMPk96CTYbsIz7Mp/nNAsBo908eAHhy7RYyTX92MjmNwkS5UNk723NhFY0ffiFQS85q9D8b36DyuJqF4FTAQXHYkT; + Expires=Fri, 14 Oct 2022 16:03:33 GMT; Path=/; SameSite=None; Secure + - csrftoken=iICDgBNQL12mXjinNVY6tCLo6zfG6iuoZCdPbax8glL7gwSSh0ZGjwNesWqsRGM9; + expires=Fri, 06 Oct 2023 16:03:34 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=o4ayy5fr33rghqdjfsq4ddcgptssyuqi; expires=Fri, 21 Oct 2022 16:03:34 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Location: + - https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/db099422-1a7e-4de8-8e8d-c1277eb5f428/values/144cb623-e4ab-483e-910c-48e6bf21c2a4/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/db099422-1a7e-4de8-8e8d-c1277eb5f428/values/144cb623-e4ab-483e-910c-48e6bf21c2a4/","id":"144cb623-e4ab-483e-910c-48e6bf21c2a4","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/db099422-1a7e-4de8-8e8d-c1277eb5f428/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"defaulttwo","interpolated":false,"value":"defaulttwo","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T16:03:34.670593Z","modified_at":"2022-10-07T16:03:34.670593Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaulttwo"}' + recorded_at: Fri, 07 Oct 2022 16:03:34 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76 + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 16:03:36 GMT + Content-Type: + - application/json + Content-Length: + - '3915' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=7NRzdBg0Yi889TRpuxjrrgza/+f4WR2Lmp1OI7uVlzJANOU30+iyimyQNIYElXURi6QGO9OCqP3vChjk+WqAlgt3FBPEEjC7vQp1yYZ7spZWLwiEhJlajYj7pfD4; + Expires=Fri, 14 Oct 2022 16:03:35 GMT; Path=/ + - AWSALBCORS=7NRzdBg0Yi889TRpuxjrrgza/+f4WR2Lmp1OI7uVlzJANOU30+iyimyQNIYElXURi6QGO9OCqP3vChjk+WqAlgt3FBPEEjC7vQp1yYZ7spZWLwiEhJlajYj7pfD4; + Expires=Fri, 14 Oct 2022 16:03:35 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=qt9El/H6XsxtJhDFDZNWGKRfRn43LJzUJIyFheutT31Fqsu6L62v8hfjnZcw5oSCMZ+C0PEopEY3zIiGO7mxG6icyfMOKLKFLXgzEU7yV0zYiwxSqdjvgW9wCQ1w4k5/GKOINBt+sTcjnVA3vCbyu2v90ajN1KQWykmI15nD76SW; + Expires=Fri, 14 Oct 2022 16:03:35 GMT; Path=/ + - AWSALBTGCORS=qt9El/H6XsxtJhDFDZNWGKRfRn43LJzUJIyFheutT31Fqsu6L62v8hfjnZcw5oSCMZ+C0PEopEY3zIiGO7mxG6icyfMOKLKFLXgzEU7yV0zYiwxSqdjvgW9wCQ1w4k5/GKOINBt+sTcjnVA3vCbyu2v90ajN1KQWykmI15nD76SW; + Expires=Fri, 14 Oct 2022 16:03:35 GMT; Path=/; SameSite=None; Secure + - csrftoken=kzBo56t2hAOs9olwnY3HoL9ojMOMWp0Qlsd8CDnZWKElRwc9XZDU4tBiXfRZoO8S; + expires=Fri, 06 Oct 2023 16:03:36 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=9qh42efzqu5j04fosb7na7a823ai47zl; expires=Fri, 21 Oct 2022 16:03:36 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/","id":"f7c564f2-6ead-4299-8b63-e93c5058700e","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/","project_name":"TestProject","referencing_templates":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/478d4d02-b3e8-42c2-93b4-0ee47165ec83/"],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/values/bae3c955-dfd6-4e40-b07c-c0e4310f0d46/","id":"bae3c955-dfd6-4e40-b07c-c0e4310f0d46","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"defaultone","interpolated":false,"value":"defaultone","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T16:03:33.026505Z","modified_at":"2022-10-07T16:03:33.026505Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaultone"}},"overrides":null,"created_at":"2022-10-07T16:03:24.778966Z","modified_at":"2022-10-07T16:03:24.778966Z","templates":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/478d4d02-b3e8-42c2-93b4-0ee47165ec83/"]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/db099422-1a7e-4de8-8e8d-c1277eb5f428/","id":"db099422-1a7e-4de8-8e8d-c1277eb5f428","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/","project_name":"TestProject","referencing_templates":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/cd3f8482-108e-4ea1-a30d-0083cae24f44/"],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/db099422-1a7e-4de8-8e8d-c1277eb5f428/values/144cb623-e4ab-483e-910c-48e6bf21c2a4/","id":"144cb623-e4ab-483e-910c-48e6bf21c2a4","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/db099422-1a7e-4de8-8e8d-c1277eb5f428/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"defaulttwo","interpolated":false,"value":"defaulttwo","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T16:03:34.670593Z","modified_at":"2022-10-07T16:03:34.670593Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaulttwo"}},"overrides":null,"created_at":"2022-10-07T16:03:26.280632Z","modified_at":"2022-10-07T16:03:26.280632Z","templates":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/cd3f8482-108e-4ea1-a30d-0083cae24f44/"]}]}' + recorded_at: Fri, 07 Oct 2022 16:03:36 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76 + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 16:03:38 GMT + Content-Type: + - application/json + Content-Length: + - '1693' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=pmwnjcsmiIr/ooWcyclaGXK9DvpgCYQOTsb/S1gELB/Mk1gXgSJ0TrqeRt8QIKVicH0iXexcWic9T4+6au4DbRL3ARqBzYKc42feG+vf/7M7feke6CJv3yiENIjy; + Expires=Fri, 14 Oct 2022 16:03:37 GMT; Path=/ + - AWSALBCORS=pmwnjcsmiIr/ooWcyclaGXK9DvpgCYQOTsb/S1gELB/Mk1gXgSJ0TrqeRt8QIKVicH0iXexcWic9T4+6au4DbRL3ARqBzYKc42feG+vf/7M7feke6CJv3yiENIjy; + Expires=Fri, 14 Oct 2022 16:03:37 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=UJb2o/6hF0pK7ctVVB5q+TfB/sRGqEFS4scJOsG/71qDYTAjJAe387Mix4ozTwfN0SUJypU8WSw3mIZ3338Q/AZSX1Yq7uEagegvzn1GvzOKgc+4wiMBXRM4c9zdJ0DFsSN+0oRRoMZrBH27EorXn6Q5DeDRZ7GXkVZr3qIc3tym; + Expires=Fri, 14 Oct 2022 16:03:37 GMT; Path=/ + - AWSALBTGCORS=UJb2o/6hF0pK7ctVVB5q+TfB/sRGqEFS4scJOsG/71qDYTAjJAe387Mix4ozTwfN0SUJypU8WSw3mIZ3338Q/AZSX1Yq7uEagegvzn1GvzOKgc+4wiMBXRM4c9zdJ0DFsSN+0oRRoMZrBH27EorXn6Q5DeDRZ7GXkVZr3qIc3tym; + Expires=Fri, 14 Oct 2022 16:03:37 GMT; Path=/; SameSite=None; Secure + - csrftoken=dfoT53t2rrLgVCNzSpKbAAPmfQGsAjv1ydLBtgRU69Uvycb1kMgX5BPGKedkNpgL; + expires=Fri, 06 Oct 2023 16:03:38 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=1w57ni6eqrlng812wg20n3x4h6o1kwb6; expires=Fri, 21 Oct 2022 16:03:38 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/478d4d02-b3e8-42c2-93b4-0ee47165ec83/","id":"478d4d02-b3e8-42c2-93b4-0ee47165ec83","name":"tone","description":"","evaluated":false,"body":"tmpl1 + {{one}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T16:03:28.278052Z","modified_at":"2022-10-07T16:03:28.278052Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/"],"references":[],"referenced_by":[]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/cd3f8482-108e-4ea1-a30d-0083cae24f44/","id":"cd3f8482-108e-4ea1-a30d-0083cae24f44","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 + {{two}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/db099422-1a7e-4de8-8e8d-c1277eb5f428/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T16:03:29.817757Z","modified_at":"2022-10-07T16:03:29.817757Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/db099422-1a7e-4de8-8e8d-c1277eb5f428/"],"references":[],"referenced_by":[]}]}' + recorded_at: Fri, 07 Oct 2022 16:03:38 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/478d4d02-b3e8-42c2-93b4-0ee47165ec83/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76 + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 16:03:40 GMT + Content-Type: + - application/json + Content-Length: + - '823' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=uE2mlL+HcHh7WyZ1okMLWpMiQWu3HBnPnU9wu9us5EaC2PTUKnEn2HSlrP6eI6IzpYCc5w3dMvV95NpHH7gcQzq9eyrbmU9pTXkfkxnlCfGtbKhDKEG+K5qd9YOw; + Expires=Fri, 14 Oct 2022 16:03:38 GMT; Path=/ + - AWSALBCORS=uE2mlL+HcHh7WyZ1okMLWpMiQWu3HBnPnU9wu9us5EaC2PTUKnEn2HSlrP6eI6IzpYCc5w3dMvV95NpHH7gcQzq9eyrbmU9pTXkfkxnlCfGtbKhDKEG+K5qd9YOw; + Expires=Fri, 14 Oct 2022 16:03:38 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=vn5Q1UpQAuUzElnsCNrK7mboh6Rxwd7FoUxrbX5OtwtLaqapWlfXBTzY/AgChEb1pag2z4MIUxLC67gu4qwaLi3ULBF0mxd2mnsj3M0u+JVspWv9ANpCfyOEKRsmveEqDVSZfHemWh89yZPt9ASW8B8m5sfcq4YzZaf4K+0jqgEc; + Expires=Fri, 14 Oct 2022 16:03:38 GMT; Path=/ + - AWSALBTGCORS=vn5Q1UpQAuUzElnsCNrK7mboh6Rxwd7FoUxrbX5OtwtLaqapWlfXBTzY/AgChEb1pag2z4MIUxLC67gu4qwaLi3ULBF0mxd2mnsj3M0u+JVspWv9ANpCfyOEKRsmveEqDVSZfHemWh89yZPt9ASW8B8m5sfcq4YzZaf4K+0jqgEc; + Expires=Fri, 14 Oct 2022 16:03:38 GMT; Path=/; SameSite=None; Secure + - csrftoken=s4kn6JJkiOuQmzRe368Gl00ZckEm7PuIZUFsOTUgpg5IzRCmseuIugf1wcl0MBdo; + expires=Fri, 06 Oct 2023 16:03:40 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=fzsuj1n4acash32ngxiwbaw01zsj1w99; expires=Fri, 21 Oct 2022 16:03:40 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/478d4d02-b3e8-42c2-93b4-0ee47165ec83/","id":"478d4d02-b3e8-42c2-93b4-0ee47165ec83","name":"tone","description":"","evaluated":false,"body":"tmpl1 + defaultone","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T16:03:28.278052Z","modified_at":"2022-10-07T16:03:28.278052Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/"],"references":[],"referenced_by":[]}' + recorded_at: Fri, 07 Oct 2022 16:03:40 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/tags/?name=test_tag + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 16:03:43 GMT + Content-Type: + - application/json + Content-Length: + - '52' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=raJGtsMo7oetj+7O9LxjOq3stXLsQueutGxz4WSwZVsoixhMG15hlnyFAbOiVpxdxdw5h0cqgaNhxA2E5NOsg2yubDXNVhEdF3ucyK5Tvh0a0jAb8Q7IQHd2UBY+; + Expires=Fri, 14 Oct 2022 16:03:42 GMT; Path=/ + - AWSALBCORS=raJGtsMo7oetj+7O9LxjOq3stXLsQueutGxz4WSwZVsoixhMG15hlnyFAbOiVpxdxdw5h0cqgaNhxA2E5NOsg2yubDXNVhEdF3ucyK5Tvh0a0jAb8Q7IQHd2UBY+; + Expires=Fri, 14 Oct 2022 16:03:42 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=JhklORksHfI7wocGMh4lBIUdlf8BcdnWTWNHxbGnUf8VeDNUnmajR7+eUqDSKDlEGyUALj5UyUIS6nS0czpIFlXQOanSq8wLGbUHd5LXnnFbcm5H714umEZ8SSYcIBz8S4oGg5BriBMe34rqDcD1ICkO8HGmkeRiyMrlXaJk0Q/P; + Expires=Fri, 14 Oct 2022 16:03:42 GMT; Path=/ + - AWSALBTGCORS=JhklORksHfI7wocGMh4lBIUdlf8BcdnWTWNHxbGnUf8VeDNUnmajR7+eUqDSKDlEGyUALj5UyUIS6nS0czpIFlXQOanSq8wLGbUHd5LXnnFbcm5H714umEZ8SSYcIBz8S4oGg5BriBMe34rqDcD1ICkO8HGmkeRiyMrlXaJk0Q/P; + Expires=Fri, 14 Oct 2022 16:03:42 GMT; Path=/; SameSite=None; Secure + - csrftoken=UzofYH92RoYG3ygKEqI8AHQ5KmI36rI2AqFKSI60aAZy3Fv8CekaCFKIa8waQMMP; + expires=Fri, 06 Oct 2023 16:03:43 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=qy3rr8b1roj9lidfm111y6kicswbkdfd; expires=Fri, 21 Oct 2022 16:03:43 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"count":0,"next":null,"previous":null,"results":[]}' + recorded_at: Fri, 07 Oct 2022 16:03:43 GMT +- request: + method: post + uri: https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/tags/ + body: + encoding: UTF-8 + string: '{"name":"test_tag"}' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 201 + message: Created + headers: + Date: + - Fri, 07 Oct 2022 16:03:45 GMT + Content-Type: + - application/json + Content-Length: + - '352' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=JBQUYoW6nuzengzeiTVa5XIGbIUfldmGwu/u0n7YwLuN0+N9shuQXsIecZJadlzKyUcIOL1HbAMbF0zNEDaw39XSOfoxiNlUlABszWa1Wft2XsAtj2vYxVVwpI1k; + Expires=Fri, 14 Oct 2022 16:03:43 GMT; Path=/ + - AWSALBCORS=JBQUYoW6nuzengzeiTVa5XIGbIUfldmGwu/u0n7YwLuN0+N9shuQXsIecZJadlzKyUcIOL1HbAMbF0zNEDaw39XSOfoxiNlUlABszWa1Wft2XsAtj2vYxVVwpI1k; + Expires=Fri, 14 Oct 2022 16:03:43 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=uveNTMnjRewkIKJCdoynRjUBzH2DyX/tnsc2g+w1VHoytmXc3mLSqO8EDZv0cRyz5q/zTQ2oIif1/ez06kVoMrioXRq028zaizXcb3heczubVX08YPOAkA0h9KMiRb9qOnkkWS4+KgVicibDBoc0tvYraaaC7AF5/RlzowAFxcJk; + Expires=Fri, 14 Oct 2022 16:03:43 GMT; Path=/ + - AWSALBTGCORS=uveNTMnjRewkIKJCdoynRjUBzH2DyX/tnsc2g+w1VHoytmXc3mLSqO8EDZv0cRyz5q/zTQ2oIif1/ez06kVoMrioXRq028zaizXcb3heczubVX08YPOAkA0h9KMiRb9qOnkkWS4+KgVicibDBoc0tvYraaaC7AF5/RlzowAFxcJk; + Expires=Fri, 14 Oct 2022 16:03:43 GMT; Path=/; SameSite=None; Secure + - csrftoken=m122MoxFH51Po3JOpirsGjGNWPUku5S3R9Z4pttC7mXaGVxOr2sSTvHxifpcKmK8; + expires=Fri, 06 Oct 2023 16:03:45 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=0ga31ur5d9usbd4eqxmnhqcm2uqbzfom; expires=Fri, 21 Oct 2022 16:03:45 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Location: + - https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/tags/7798f5d5-c219-47d9-a05d-ecb9838ca604/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/tags/7798f5d5-c219-47d9-a05d-ecb9838ca604/","id":"7798f5d5-c219-47d9-a05d-ecb9838ca604","name":"test_tag","description":"","timestamp":"2022-10-07T16:03:45.113884Z","pushes":[],"push_urls":[],"usage":{"last_read":null,"last_read_by":"","total_reads":0}}' + recorded_at: Fri, 07 Oct 2022 16:03:45 GMT +- request: + method: patch + uri: https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/values/bae3c955-dfd6-4e40-b07c-c0e4310f0d46/ + body: + encoding: UTF-8 + string: '{"internal_value":"newdefaultone"}' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 16:03:48 GMT + Content-Type: + - application/json + Content-Length: + - '1002' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=jtgT4rled/nnvG3bmhi/J01WPKJL4diBXxWb+l52OmWnuTPPK+KSpeGEYLIFVSCXWkO62Yjax9FulHb2Czp7tl8gQuFIsG77cDxIeU65reKePpGwGDFTBCGp0bW/; + Expires=Fri, 14 Oct 2022 16:03:47 GMT; Path=/ + - AWSALBCORS=jtgT4rled/nnvG3bmhi/J01WPKJL4diBXxWb+l52OmWnuTPPK+KSpeGEYLIFVSCXWkO62Yjax9FulHb2Czp7tl8gQuFIsG77cDxIeU65reKePpGwGDFTBCGp0bW/; + Expires=Fri, 14 Oct 2022 16:03:47 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=5nP9bO2EAVcGAv6l472ggUvWZoKfGCTuZsMqeoxWeKJxDrZ9opjIpmL/eNiPceBxIyAuKXjy1adrUKHYWfYsxkYFA12JPx0s0r8FK4EoNKS1PYiU7458dl2TTS7SFbCAYtdhwuD221+NlMHgAd9PSi+TBnb9dUd3yRhMRHxpHC/3; + Expires=Fri, 14 Oct 2022 16:03:47 GMT; Path=/ + - AWSALBTGCORS=5nP9bO2EAVcGAv6l472ggUvWZoKfGCTuZsMqeoxWeKJxDrZ9opjIpmL/eNiPceBxIyAuKXjy1adrUKHYWfYsxkYFA12JPx0s0r8FK4EoNKS1PYiU7458dl2TTS7SFbCAYtdhwuD221+NlMHgAd9PSi+TBnb9dUd3yRhMRHxpHC/3; + Expires=Fri, 14 Oct 2022 16:03:47 GMT; Path=/; SameSite=None; Secure + - csrftoken=U5lPWwpXfCHiPP1XGyCPgA0LbAdpPqGzQBV7Cr3FfnpRojgDihQJVDTNw1K72R5l; + expires=Fri, 06 Oct 2023 16:03:48 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=xpfqte10qjhm26cgcyflu1affgpu4zdq; expires=Fri, 21 Oct 2022 16:03:48 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/values/bae3c955-dfd6-4e40-b07c-c0e4310f0d46/","id":"bae3c955-dfd6-4e40-b07c-c0e4310f0d46","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"newdefaultone","interpolated":false,"value":"newdefaultone","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T16:03:33.026505Z","modified_at":"2022-10-07T16:03:48.694939Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"newdefaultone"}' + recorded_at: Fri, 07 Oct 2022 16:03:48 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76 + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 16:03:50 GMT + Content-Type: + - application/json + Content-Length: + - '3924' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=sqHSCUzgAU1ttQOn53/zpFpMtzq19qVkU3ijeWkpLlHqfR/BGRxj5uyApjKskGuem8w66N5KbdmMlBYEROx/as6pnacpcLO1iqApU54oSeeCPdZqJtUnSPznNJX+; + Expires=Fri, 14 Oct 2022 16:03:49 GMT; Path=/ + - AWSALBCORS=sqHSCUzgAU1ttQOn53/zpFpMtzq19qVkU3ijeWkpLlHqfR/BGRxj5uyApjKskGuem8w66N5KbdmMlBYEROx/as6pnacpcLO1iqApU54oSeeCPdZqJtUnSPznNJX+; + Expires=Fri, 14 Oct 2022 16:03:49 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=4Dxr+o5qOti/eoguTNJZvdK9c9/UTCniY/rFsoez8k+SZm4FXlT29DdToX8N256v1S+pukVzcU4zd/l1VMB0VgM5VeKBMLG2OpgI4sib1rKRwFzu4aPJ/44vGJAqqtNwB54hNcgz9+UmjdZYnhmFI8joeuA7d4iqHONIfcniEkE+; + Expires=Fri, 14 Oct 2022 16:03:49 GMT; Path=/ + - AWSALBTGCORS=4Dxr+o5qOti/eoguTNJZvdK9c9/UTCniY/rFsoez8k+SZm4FXlT29DdToX8N256v1S+pukVzcU4zd/l1VMB0VgM5VeKBMLG2OpgI4sib1rKRwFzu4aPJ/44vGJAqqtNwB54hNcgz9+UmjdZYnhmFI8joeuA7d4iqHONIfcniEkE+; + Expires=Fri, 14 Oct 2022 16:03:49 GMT; Path=/; SameSite=None; Secure + - csrftoken=3rgu9YywJ21IBEzaNYNIljdpiD7uCfEQcSSBq3PovvPMkw6Prr8im4dl1Pqozpwb; + expires=Fri, 06 Oct 2023 16:03:50 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=2zxvwklti5r8qt29fj5nw7cv46zadabp; expires=Fri, 21 Oct 2022 16:03:50 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/","id":"f7c564f2-6ead-4299-8b63-e93c5058700e","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/","project_name":"TestProject","referencing_templates":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/478d4d02-b3e8-42c2-93b4-0ee47165ec83/"],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/values/bae3c955-dfd6-4e40-b07c-c0e4310f0d46/","id":"bae3c955-dfd6-4e40-b07c-c0e4310f0d46","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"newdefaultone","interpolated":false,"value":"newdefaultone","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T16:03:33.026505Z","modified_at":"2022-10-07T16:03:48.694939Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"newdefaultone"}},"overrides":null,"created_at":"2022-10-07T16:03:24.778966Z","modified_at":"2022-10-07T16:03:24.778966Z","templates":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/478d4d02-b3e8-42c2-93b4-0ee47165ec83/"]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/db099422-1a7e-4de8-8e8d-c1277eb5f428/","id":"db099422-1a7e-4de8-8e8d-c1277eb5f428","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/","project_name":"TestProject","referencing_templates":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/cd3f8482-108e-4ea1-a30d-0083cae24f44/"],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/db099422-1a7e-4de8-8e8d-c1277eb5f428/values/144cb623-e4ab-483e-910c-48e6bf21c2a4/","id":"144cb623-e4ab-483e-910c-48e6bf21c2a4","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/db099422-1a7e-4de8-8e8d-c1277eb5f428/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"defaulttwo","interpolated":false,"value":"defaulttwo","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T16:03:34.670593Z","modified_at":"2022-10-07T16:03:34.670593Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaulttwo"}},"overrides":null,"created_at":"2022-10-07T16:03:26.280632Z","modified_at":"2022-10-07T16:03:26.280632Z","templates":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/cd3f8482-108e-4ea1-a30d-0083cae24f44/"]}]}' + recorded_at: Fri, 07 Oct 2022 16:03:50 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/478d4d02-b3e8-42c2-93b4-0ee47165ec83/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76 + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 16:03:52 GMT + Content-Type: + - application/json + Content-Length: + - '826' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=ah1CB0hKoI99oru4QW4zHWi+dWegNvbkTlXpVXBLNQ9wupbMxop9UHTEm+ydOHB9FU3Y/6/4zNkjo82iPsQVg9BcB+0jyzyAw1OvA4oxOAM2FzUJKkvAmPSjkRE3; + Expires=Fri, 14 Oct 2022 16:03:50 GMT; Path=/ + - AWSALBCORS=ah1CB0hKoI99oru4QW4zHWi+dWegNvbkTlXpVXBLNQ9wupbMxop9UHTEm+ydOHB9FU3Y/6/4zNkjo82iPsQVg9BcB+0jyzyAw1OvA4oxOAM2FzUJKkvAmPSjkRE3; + Expires=Fri, 14 Oct 2022 16:03:50 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=GOtBzzQa4NWhsHZkKr1IK1ADQGZx92q1ZHlpJYKdMMN5vWdgIsu00kYzS63OX9DoTuZ1IDa/FvsD4K/T1c2v6FcEAZueorxFhYQfI+zZM6Bxrs2C+JxEAw3kcPDbEKIFH2vNGj8g28RtXDbjLnMEwRJquIIM+jg2oGiUQziNts0E; + Expires=Fri, 14 Oct 2022 16:03:50 GMT; Path=/ + - AWSALBTGCORS=GOtBzzQa4NWhsHZkKr1IK1ADQGZx92q1ZHlpJYKdMMN5vWdgIsu00kYzS63OX9DoTuZ1IDa/FvsD4K/T1c2v6FcEAZueorxFhYQfI+zZM6Bxrs2C+JxEAw3kcPDbEKIFH2vNGj8g28RtXDbjLnMEwRJquIIM+jg2oGiUQziNts0E; + Expires=Fri, 14 Oct 2022 16:03:50 GMT; Path=/; SameSite=None; Secure + - csrftoken=UQ4OxAHwRijTWgvYpcVSGAlPXpB7y0LyGFaTGRVJu9tyI30dwwOMcC45AHVhtJ1w; + expires=Fri, 06 Oct 2023 16:03:52 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=uhqkniq6gmd2zekshjtb7vgmr5t1domy; expires=Fri, 21 Oct 2022 16:03:52 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/478d4d02-b3e8-42c2-93b4-0ee47165ec83/","id":"478d4d02-b3e8-42c2-93b4-0ee47165ec83","name":"tone","description":"","evaluated":false,"body":"tmpl1 + newdefaultone","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T16:03:28.278052Z","modified_at":"2022-10-07T16:03:28.278052Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/"],"references":[],"referenced_by":[]}' + recorded_at: Fri, 07 Oct 2022 16:03:52 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 16:03:53 GMT + Content-Type: + - application/json + Content-Length: + - '805' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=0vwaQGIM0c1d0Ia8bnP284JtTIslfg45FrYHvk5fvGINtxUg9KMtdNALNCS1/7DLOwhTHCeU8Ip+ZLj7jFIo5PirbQ4wQL4QsLQzfhtXCkmjc4/RdIv7doK5l4bs; + Expires=Fri, 14 Oct 2022 16:03:52 GMT; Path=/ + - AWSALBCORS=0vwaQGIM0c1d0Ia8bnP284JtTIslfg45FrYHvk5fvGINtxUg9KMtdNALNCS1/7DLOwhTHCeU8Ip+ZLj7jFIo5PirbQ4wQL4QsLQzfhtXCkmjc4/RdIv7doK5l4bs; + Expires=Fri, 14 Oct 2022 16:03:52 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=nhfcJkp7GcwpUxO07586bfqsIS9tFbvFYJ5d19RLTe/EtySbAu009y4m42GMKwbKH1kqUJzrEqjC0CY8CzLRzzKQIocf83VK0p/cCS345um+ST7AZEziOb7bHsgAvbT0+IP6kKK0lQr5EVRKJuoJvfJctezu4+M5Zu+nQG4bo5D9; + Expires=Fri, 14 Oct 2022 16:03:52 GMT; Path=/ + - AWSALBTGCORS=nhfcJkp7GcwpUxO07586bfqsIS9tFbvFYJ5d19RLTe/EtySbAu009y4m42GMKwbKH1kqUJzrEqjC0CY8CzLRzzKQIocf83VK0p/cCS345um+ST7AZEziOb7bHsgAvbT0+IP6kKK0lQr5EVRKJuoJvfJctezu4+M5Zu+nQG4bo5D9; + Expires=Fri, 14 Oct 2022 16:03:52 GMT; Path=/; SameSite=None; Secure + - csrftoken=LGT9hhzZUEgxSqJdVsobSv75KCpmsWKu2iCn6hBv5rfY7Badv3kWnZiyd1V0PKdj; + expires=Fri, 06 Oct 2023 16:03:53 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=pqo2ysxox93m9mhkfhwydce7tyih10p7; expires=Fri, 21 Oct 2022 16:03:53 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/","id":"439ebfc8-e75a-4c19-8372-1fb4f6cfe82f","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T16:03:21.432641Z","modified_at":"2022-10-07T16:03:21.432641Z"}]}' + recorded_at: Fri, 07 Oct 2022 16:03:53 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/environments/ + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 16:03:55 GMT + Content-Type: + - application/json + Content-Length: + - '2085' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=kK2vgB+3Sek8fAVd4E7RJ8bTj1HpP/nYXhwRGdLS+331AI6bfhknReUjYdn3jC7pCJnsjfnLYZdOmUTWD2Ar4XDTGoj2Gq5eT+9TgR/x6gTdEzJst0SN+9KWtvSU; + Expires=Fri, 14 Oct 2022 16:03:53 GMT; Path=/ + - AWSALBCORS=kK2vgB+3Sek8fAVd4E7RJ8bTj1HpP/nYXhwRGdLS+331AI6bfhknReUjYdn3jC7pCJnsjfnLYZdOmUTWD2Ar4XDTGoj2Gq5eT+9TgR/x6gTdEzJst0SN+9KWtvSU; + Expires=Fri, 14 Oct 2022 16:03:53 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=ly5xzXio3kCX6W62ilSQFoT176Go8wpuv0qyq8IwqmkhWR0xzMH77WtJMv9YMsUTN7okNAUNHiGUtnoJuS1H5PQLQMKFeoouSxRH24C/FR0L6DcAmqfvCH2+DnSnUkfZh+nfKiyYEn1URhscJVit7ypQjzyrQeo53GOMpvl8YHBs; + Expires=Fri, 14 Oct 2022 16:03:53 GMT; Path=/ + - AWSALBTGCORS=ly5xzXio3kCX6W62ilSQFoT176Go8wpuv0qyq8IwqmkhWR0xzMH77WtJMv9YMsUTN7okNAUNHiGUtnoJuS1H5PQLQMKFeoouSxRH24C/FR0L6DcAmqfvCH2+DnSnUkfZh+nfKiyYEn1URhscJVit7ypQjzyrQeo53GOMpvl8YHBs; + Expires=Fri, 14 Oct 2022 16:03:53 GMT; Path=/; SameSite=None; Secure + - csrftoken=P2pj6pCji4YR3wGiKFrIha6nt4FS9CaWGFwVkdSiNl8q7TeZAsbRYgbsfY5F51uV; + expires=Fri, 06 Oct 2023 16:03:55 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=dxzt0u9xo2lhacloxyfo7y0t8rqcf0hs; expires=Fri, 21 Oct 2022 16:03:55 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","id":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","name":"default","description":"Default + environment, base for all environments.","parent":null,"children":["https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/"],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.112161Z","modified_at":"2022-06-02T17:13:09.641786Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","id":"8f2e37b9-b429-4987-bb85-abd24bd67274","name":"development","description":"Development + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.123839Z","modified_at":"2022-06-02T17:11:55.123839Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","id":"0663ac09-5883-452b-bc1a-00e3347fece5","name":"production","description":"Production + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.145580Z","modified_at":"2022-06-02T17:11:55.145580Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/","id":"fc970cc2-c24f-427d-9c7a-70acde9f1b64","name":"staging","description":"Staging + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.134547Z","modified_at":"2022-06-02T17:11:55.134547Z"}]}' + recorded_at: Fri, 07 Oct 2022 16:03:55 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76&tag=test_tag + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 16:04:00 GMT + Content-Type: + - application/json + Content-Length: + - '3915' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=ZJF6RvVSVqo3p6NfVQhFNH758HLj6uc5sZRnXedaVT9a/4Z3b6pIEMtgYnlF8us/0gQG3TpWYQ89AR1KQWM+3Bw4ZSUFzHn//jQvxKIS9yah4suJYOSgDMFn5ZAR; + Expires=Fri, 14 Oct 2022 16:03:55 GMT; Path=/ + - AWSALBCORS=ZJF6RvVSVqo3p6NfVQhFNH758HLj6uc5sZRnXedaVT9a/4Z3b6pIEMtgYnlF8us/0gQG3TpWYQ89AR1KQWM+3Bw4ZSUFzHn//jQvxKIS9yah4suJYOSgDMFn5ZAR; + Expires=Fri, 14 Oct 2022 16:03:55 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=x0Vp4E611ElulNQtoyx8558Usevl8kSzHObGFNFO4h/UJlTR/f7atw2VY+/2Tt2wD+TYrelNQi3Es1TaJ1ECllo/TePuI2+WqJlohoNLzGKxj+Tl0uDQCPLfNH1nD7FrQtZlhjnC8meFYZZeSAiYCHHEs6iccvVZdTeF7rD9LYgr; + Expires=Fri, 14 Oct 2022 16:03:55 GMT; Path=/ + - AWSALBTGCORS=x0Vp4E611ElulNQtoyx8558Usevl8kSzHObGFNFO4h/UJlTR/f7atw2VY+/2Tt2wD+TYrelNQi3Es1TaJ1ECllo/TePuI2+WqJlohoNLzGKxj+Tl0uDQCPLfNH1nD7FrQtZlhjnC8meFYZZeSAiYCHHEs6iccvVZdTeF7rD9LYgr; + Expires=Fri, 14 Oct 2022 16:03:55 GMT; Path=/; SameSite=None; Secure + - csrftoken=6Xk1xmkk8pGA2pEvjn14kcBcCkmoSmZtI8uScQQCCDaqPHgtouZ5hO2wGsvJl62Z; + expires=Fri, 06 Oct 2023 16:04:00 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=qpw1x3am8x7faxvbwngmh5f7jszzg8ga; expires=Fri, 21 Oct 2022 16:04:00 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/","id":"f7c564f2-6ead-4299-8b63-e93c5058700e","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/","project_name":"TestProject","referencing_templates":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/478d4d02-b3e8-42c2-93b4-0ee47165ec83/"],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/values/bae3c955-dfd6-4e40-b07c-c0e4310f0d46/","id":"bae3c955-dfd6-4e40-b07c-c0e4310f0d46","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"defaultone","interpolated":false,"value":"defaultone","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T16:03:33.026505Z","modified_at":"2022-10-07T16:03:33.026505Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaultone"}},"overrides":null,"created_at":"2022-10-07T16:03:24.778966Z","modified_at":"2022-10-07T16:03:24.778966Z","templates":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/478d4d02-b3e8-42c2-93b4-0ee47165ec83/"]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/db099422-1a7e-4de8-8e8d-c1277eb5f428/","id":"db099422-1a7e-4de8-8e8d-c1277eb5f428","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/","project_name":"TestProject","referencing_templates":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/cd3f8482-108e-4ea1-a30d-0083cae24f44/"],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/db099422-1a7e-4de8-8e8d-c1277eb5f428/values/144cb623-e4ab-483e-910c-48e6bf21c2a4/","id":"144cb623-e4ab-483e-910c-48e6bf21c2a4","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/db099422-1a7e-4de8-8e8d-c1277eb5f428/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":"defaulttwo","interpolated":false,"value":"defaulttwo","evaluated":false,"secret":false,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T16:03:34.670593Z","modified_at":"2022-10-07T16:03:34.670593Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":"defaulttwo"}},"overrides":null,"created_at":"2022-10-07T16:03:26.280632Z","modified_at":"2022-10-07T16:03:26.280632Z","templates":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/cd3f8482-108e-4ea1-a30d-0083cae24f44/"]}]}' + recorded_at: Fri, 07 Oct 2022 16:04:00 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76&tag=test_tag + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 16:04:05 GMT + Content-Type: + - application/json + Content-Length: + - '1693' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=tFLat+fG7mHNBNyz0MiSFD55BDOcnOF50EoWYAhHG8imB2YMVQksOYsAM579X36ffj5fwh+fBv+ln9eOlHn4KYJtIk+N5ftitSOolLxgPapti+XDIrMTLOgyXZ6m; + Expires=Fri, 14 Oct 2022 16:04:00 GMT; Path=/ + - AWSALBCORS=tFLat+fG7mHNBNyz0MiSFD55BDOcnOF50EoWYAhHG8imB2YMVQksOYsAM579X36ffj5fwh+fBv+ln9eOlHn4KYJtIk+N5ftitSOolLxgPapti+XDIrMTLOgyXZ6m; + Expires=Fri, 14 Oct 2022 16:04:00 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=nvv3GuorUl547lrxMU3ZaxXd1wbZccuQIX4sg7VeZE9I18C2549NuY44AnrY46elr7dnt6f3j0eqYFUuQLyualM6YCYAyo8eWT/lQkFoSeo2XEV5bM4/YYHqCQf+wpXEdX8l4sHsV8Og9DcWdCQIWwPGKNaR578Kv3UwISVGSV/2; + Expires=Fri, 14 Oct 2022 16:04:00 GMT; Path=/ + - AWSALBTGCORS=nvv3GuorUl547lrxMU3ZaxXd1wbZccuQIX4sg7VeZE9I18C2549NuY44AnrY46elr7dnt6f3j0eqYFUuQLyualM6YCYAyo8eWT/lQkFoSeo2XEV5bM4/YYHqCQf+wpXEdX8l4sHsV8Og9DcWdCQIWwPGKNaR578Kv3UwISVGSV/2; + Expires=Fri, 14 Oct 2022 16:04:00 GMT; Path=/; SameSite=None; Secure + - csrftoken=GHKhmuVC7bAKmtcuSvDBWbmI5cnDUTZssRN2jkrrHzUXs4qPnzbADDfX6i9uAe0N; + expires=Fri, 06 Oct 2023 16:04:05 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=yk3nkubl1ajwplkm147fcee0p9fexcbj; expires=Fri, 21 Oct 2022 16:04:05 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/cd3f8482-108e-4ea1-a30d-0083cae24f44/","id":"cd3f8482-108e-4ea1-a30d-0083cae24f44","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 + {{two}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/db099422-1a7e-4de8-8e8d-c1277eb5f428/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T16:03:29.817757Z","modified_at":"2022-10-07T16:03:29.817757Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/db099422-1a7e-4de8-8e8d-c1277eb5f428/"],"references":[],"referenced_by":[]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/478d4d02-b3e8-42c2-93b4-0ee47165ec83/","id":"478d4d02-b3e8-42c2-93b4-0ee47165ec83","name":"tone","description":"","evaluated":false,"body":"tmpl1 + {{one}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T16:03:28.278052Z","modified_at":"2022-10-07T16:03:28.278052Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/"],"references":[],"referenced_by":[]}]}' + recorded_at: Fri, 07 Oct 2022 16:04:05 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/478d4d02-b3e8-42c2-93b4-0ee47165ec83/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76&tag=test_tag + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 16:04:14 GMT + Content-Type: + - application/json + Content-Length: + - '823' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=AwfULDtOyCQRMQbBbTFYiZVQelbRP7NYPGjSLXY+sTlWuYq8sZ+x2K7UXwOOWVjw0OOXN2saNVfltOWAa2q6MOh5UgHxIukLF+1yDAuhycfkYF/6YQxoZVln+JAL; + Expires=Fri, 14 Oct 2022 16:04:05 GMT; Path=/ + - AWSALBCORS=AwfULDtOyCQRMQbBbTFYiZVQelbRP7NYPGjSLXY+sTlWuYq8sZ+x2K7UXwOOWVjw0OOXN2saNVfltOWAa2q6MOh5UgHxIukLF+1yDAuhycfkYF/6YQxoZVln+JAL; + Expires=Fri, 14 Oct 2022 16:04:05 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=IBDkWJRWIw2/fuf6P3OjYd/YztaPVexZq/I7gqc4CezsQWUlR8AI9ox1R4mTvrE3zDoLZDf9D2MNZC2cLtHdgmZ17/2X52QQwA7eJY804ryJrfbjKJuuHiLhCiUgQKiBqpofSKxF/mbb9oo0jTCD40IietfWV8J0RYckTXuK0P5j; + Expires=Fri, 14 Oct 2022 16:04:05 GMT; Path=/ + - AWSALBTGCORS=IBDkWJRWIw2/fuf6P3OjYd/YztaPVexZq/I7gqc4CezsQWUlR8AI9ox1R4mTvrE3zDoLZDf9D2MNZC2cLtHdgmZ17/2X52QQwA7eJY804ryJrfbjKJuuHiLhCiUgQKiBqpofSKxF/mbb9oo0jTCD40IietfWV8J0RYckTXuK0P5j; + Expires=Fri, 14 Oct 2022 16:04:05 GMT; Path=/; SameSite=None; Secure + - csrftoken=RGpeFItB0VIgGNeINaapotE7POuiWG9YHgzBmaXQcotrwXDMa38aOeIKq4P8ZZjo; + expires=Fri, 06 Oct 2023 16:04:14 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=uq0v1ihwek2976bts1gr3633a8yemqm2; expires=Fri, 21 Oct 2022 16:04:14 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/templates/478d4d02-b3e8-42c2-93b4-0ee47165ec83/","id":"478d4d02-b3e8-42c2-93b4-0ee47165ec83","name":"tone","description":"","evaluated":false,"body":"tmpl1 + defaultone","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T16:03:28.278052Z","modified_at":"2022-10-07T16:03:28.278052Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/439ebfc8-e75a-4c19-8372-1fb4f6cfe82f/parameters/f7c564f2-6ead-4299-8b63-e93c5058700e/"],"references":[],"referenced_by":[]}' + recorded_at: Fri, 07 Oct 2022 16:04:14 GMT +recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_templates/_template/masks_secrets_in_log_for_templates_that_reference_them.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_templates/_template/masks_secrets_in_log_for_templates_that_reference_them.yml index 72324a0..28afab0 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_templates/_template/masks_secrets_in_log_for_templates_that_reference_them.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_templates/_template/masks_secrets_in_log_for_templates_that_reference_them.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -10,7 +10,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -23,25 +23,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:39:25 GMT + - Fri, 07 Oct 2022 15:32:03 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=WSVMWhWfXw7RkEyLFIZu9jpJWP5DGi4/S6VBvRXptVVsVkge7JQIt6HlSx+DMeWi6Z45O6NVVIGK+LlWTCbhbQ0xJ3Z21kZxUb/jHY/oVzTd90JxAnNGHYxVND0P; - Expires=Tue, 11 Jan 2022 17:39:24 GMT; Path=/ - - AWSALBCORS=WSVMWhWfXw7RkEyLFIZu9jpJWP5DGi4/S6VBvRXptVVsVkge7JQIt6HlSx+DMeWi6Z45O6NVVIGK+LlWTCbhbQ0xJ3Z21kZxUb/jHY/oVzTd90JxAnNGHYxVND0P; - Expires=Tue, 11 Jan 2022 17:39:24 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=zQo2vLK+2+J6WtDUeVR8dnCqxROQY6gMsxfELlxWiQJ0z+qiU9ab0zmj8QsQ6rekbQlh7y89KSv0iuPTDMFMadBE7zxZPRGLkQaTVdewRzlb9JPIq6owBWk7SFkL8har8BxulCRl5HHVN3tmqUS6Vc5txIkbXH1I7/P9ZnTCY0+/; - Expires=Tue, 11 Jan 2022 17:39:24 GMT; Path=/ - - AWSALBTGCORS=zQo2vLK+2+J6WtDUeVR8dnCqxROQY6gMsxfELlxWiQJ0z+qiU9ab0zmj8QsQ6rekbQlh7y89KSv0iuPTDMFMadBE7zxZPRGLkQaTVdewRzlb9JPIq6owBWk7SFkL8har8BxulCRl5HHVN3tmqUS6Vc5txIkbXH1I7/P9ZnTCY0+/; - Expires=Tue, 11 Jan 2022 17:39:24 GMT; Path=/; SameSite=None; Secure - - csrftoken=21VqC4wx5heXFtqcfaQbSvCu3eOMwAq3tZj5Af49ngFrK3dBBmLcv8nAptvcHoHE; - expires=Tue, 03 Jan 2023 17:39:25 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=p9kblfcrqgfh3w1slzrq9q3eh08w9126; expires=Tue, 18 Jan 2022 17:39:25 + - AWSALB=LzAXpH2pAQyX1L1CN9lr6JiUBC66YHn1wAdUhfQoNznEs6arcY9cWAnGsBgJ8Q7aD+5fdL8jcku5ZBPFlxm8aCtHZJQj+EXUmRqJHQP+LTmTA1heONWSeB2bsoS0; + Expires=Fri, 14 Oct 2022 15:32:02 GMT; Path=/ + - AWSALBCORS=LzAXpH2pAQyX1L1CN9lr6JiUBC66YHn1wAdUhfQoNznEs6arcY9cWAnGsBgJ8Q7aD+5fdL8jcku5ZBPFlxm8aCtHZJQj+EXUmRqJHQP+LTmTA1heONWSeB2bsoS0; + Expires=Fri, 14 Oct 2022 15:32:02 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=qCzWxr+fwp0o57cJDfonf9x2rTNT5nWEixDSR3LYU8ICuubTgRgt7SjxeZq3Zq1TgygbzFDhmbl/aIbYWpbeO7cxZbjmWGkXiQZd5iIdNRh/NLsS2ngFyG35LApnQPvq89Smh/GSEObfwxc6eFQuHBZ6A+hb9+ol9xZCrHDA3x3R; + Expires=Fri, 14 Oct 2022 15:32:02 GMT; Path=/ + - AWSALBTGCORS=qCzWxr+fwp0o57cJDfonf9x2rTNT5nWEixDSR3LYU8ICuubTgRgt7SjxeZq3Zq1TgygbzFDhmbl/aIbYWpbeO7cxZbjmWGkXiQZd5iIdNRh/NLsS2ngFyG35LApnQPvq89Smh/GSEObfwxc6eFQuHBZ6A+hb9+ol9xZCrHDA3x3R; + Expires=Fri, 14 Oct 2022 15:32:02 GMT; Path=/; SameSite=None; Secure + - csrftoken=yCbWJsOmjSgIAyNlS94hhAQCIx2oJDnd4T6wslUj7sLupJ7LVdERsHkXUwhFddA8; + expires=Fri, 06 Oct 2023 15:32:03 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=iocxsvlz8yepx61qwqoj6m308vi1060h; expires=Fri, 21 Oct 2022 15:32:03 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -59,23 +59,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/","id":"273c3075-06ce-450b-afa6-245a8bee436f","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:39:18.342616Z","modified_at":"2022-01-04T17:39:22.760186Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:39:25 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/","id":"40bc65f5-3378-486d-971e-b4f543c57b1e","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:31:31.291894Z","modified_at":"2022-10-07T15:31:31.291894Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:32:03 GMT - request: method: delete - uri: https://api.cloudtruth.io/api/v1/projects/273c3075-06ce-450b-afa6-245a8bee436f/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/40bc65f5-3378-486d-971e-b4f543c57b1e/ body: encoding: US-ASCII string: '' @@ -83,7 +72,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Authorization: - Api-Key Accept-Encoding: @@ -96,23 +85,23 @@ http_interactions: message: No Content headers: Date: - - Tue, 04 Jan 2022 17:39:26 GMT + - Fri, 07 Oct 2022 15:32:05 GMT Content-Length: - '0' Connection: - keep-alive Set-Cookie: - - AWSALB=rPHKzzYcsMhWW70EacesnD6xv9si9YPBV3Sb9vdio7dEbOzbgX53Z/aof77aN6nruWyhiNbMjLB8wa5GUf+eukWj8P6gyaLF/fXiWBSCdu4KmqAgIAAh+yO8B+6I; - Expires=Tue, 11 Jan 2022 17:39:25 GMT; Path=/ - - AWSALBCORS=rPHKzzYcsMhWW70EacesnD6xv9si9YPBV3Sb9vdio7dEbOzbgX53Z/aof77aN6nruWyhiNbMjLB8wa5GUf+eukWj8P6gyaLF/fXiWBSCdu4KmqAgIAAh+yO8B+6I; - Expires=Tue, 11 Jan 2022 17:39:25 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=2o+iqkj810UiywyhRpJfMgn17H/+CtEasRDBu8IYzJkHNv+viRRZmitPKCKEVsdsN9NNa55wIEqsytuvuq/cnHS27N9A4d94Sdp7So+bA688su4VzRhBNbFsqwmWu8rSsKpZs6vLYN6yUPnb8ADoqDhB8b1S7kRCyUJkkWhD4UZA; - Expires=Tue, 11 Jan 2022 17:39:25 GMT; Path=/ - - AWSALBTGCORS=2o+iqkj810UiywyhRpJfMgn17H/+CtEasRDBu8IYzJkHNv+viRRZmitPKCKEVsdsN9NNa55wIEqsytuvuq/cnHS27N9A4d94Sdp7So+bA688su4VzRhBNbFsqwmWu8rSsKpZs6vLYN6yUPnb8ADoqDhB8b1S7kRCyUJkkWhD4UZA; - Expires=Tue, 11 Jan 2022 17:39:25 GMT; Path=/; SameSite=None; Secure - - csrftoken=sGiwiIszHIqAfM04u3ILa0hmmkrRLNY2uIaoQO5mNcPe8WBwUny6TDllE2e3VWO5; - expires=Tue, 03 Jan 2023 17:39:26 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=fu5c0f1wv51kv7130qr79s6djlw4ndav; expires=Tue, 18 Jan 2022 17:39:26 + - AWSALB=/bEfOoBBoZHroMsQAxvV604RL1mArukc4CBA/XkQY9oPNyy8HU9kbZ80ZYihqHtLCbPrqBDn9HCmavj323ivFkAfVZUQ05Lgjdw9A2mBmLlDaDp/M4pbxjV3L20T; + Expires=Fri, 14 Oct 2022 15:32:03 GMT; Path=/ + - AWSALBCORS=/bEfOoBBoZHroMsQAxvV604RL1mArukc4CBA/XkQY9oPNyy8HU9kbZ80ZYihqHtLCbPrqBDn9HCmavj323ivFkAfVZUQ05Lgjdw9A2mBmLlDaDp/M4pbxjV3L20T; + Expires=Fri, 14 Oct 2022 15:32:03 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=xxz8bLlCQEzpHxmYc36MKeBzD9ZhpZGdVU4N8WKEHd9+lqr2iGMEZ1/EIuPuqnQ1kwEX1B9DlwOgSG9C+fX1JRs3MTY0sCa0c2dw12LtnB56UN9fDSay3sb96C8n6gMfGGYrYzOD6dYoUdLbfW1fAGNuw3UhK3HKtcxqFn8+wUXH; + Expires=Fri, 14 Oct 2022 15:32:03 GMT; Path=/ + - AWSALBTGCORS=xxz8bLlCQEzpHxmYc36MKeBzD9ZhpZGdVU4N8WKEHd9+lqr2iGMEZ1/EIuPuqnQ1kwEX1B9DlwOgSG9C+fX1JRs3MTY0sCa0c2dw12LtnB56UN9fDSay3sb96C8n6gMfGGYrYzOD6dYoUdLbfW1fAGNuw3UhK3HKtcxqFn8+wUXH; + Expires=Fri, 14 Oct 2022 15:32:03 GMT; Path=/; SameSite=None; Secure + - csrftoken=QaWBtElAlX1bdCkmniCwbq5Y9lQ4Y8jXWi9ujYNgQIRLKVBGNywo8O5IN3Z4jTO9; + expires=Fri, 06 Oct 2023 15:32:05 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=hsb0kkbjujyknqwgnlao1aenw7gf8ej4; expires=Fri, 21 Oct 2022 15:32:05 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -131,10 +120,10 @@ http_interactions: body: encoding: UTF-8 string: '' - recorded_at: Tue, 04 Jan 2022 17:39:26 GMT + recorded_at: Fri, 07 Oct 2022 15:32:05 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: UTF-8 string: '{"name":"TestProject"}' @@ -142,7 +131,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -155,30 +144,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:26 GMT + - Fri, 07 Oct 2022 15:32:07 GMT Content-Type: - application/json Content-Length: - - '304' + - '365' Connection: - keep-alive Set-Cookie: - - AWSALB=d2eFJo17PRKB5k7z1eEW3h3LgpH0I6b84ahucBEsi6zMREAEOyJjPiLKFcqaiHXaQDCMQCboGqhoKoPtZk5xtvULbwLhmVEqee5iWUUe47RVoRT052K17Z50Vptj; - Expires=Tue, 11 Jan 2022 17:39:26 GMT; Path=/ - - AWSALBCORS=d2eFJo17PRKB5k7z1eEW3h3LgpH0I6b84ahucBEsi6zMREAEOyJjPiLKFcqaiHXaQDCMQCboGqhoKoPtZk5xtvULbwLhmVEqee5iWUUe47RVoRT052K17Z50Vptj; - Expires=Tue, 11 Jan 2022 17:39:26 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=gOch+u5Lq+1qxyZzdtxY5snfIq+X6d/1S81ErZf1x7WjYgwwElPecginshmCZLvbnnzYIu9pyz3GLCvWoqZ1iU4ZZCmHaxBHG+okcXeJ3rBAECTkSkuVOuU9D/VKyGD+53Tb6UeyI8KhIjJK+x93F7BlNgnXvfow+Wa69ryycQTP; - Expires=Tue, 11 Jan 2022 17:39:26 GMT; Path=/ - - AWSALBTGCORS=gOch+u5Lq+1qxyZzdtxY5snfIq+X6d/1S81ErZf1x7WjYgwwElPecginshmCZLvbnnzYIu9pyz3GLCvWoqZ1iU4ZZCmHaxBHG+okcXeJ3rBAECTkSkuVOuU9D/VKyGD+53Tb6UeyI8KhIjJK+x93F7BlNgnXvfow+Wa69ryycQTP; - Expires=Tue, 11 Jan 2022 17:39:26 GMT; Path=/; SameSite=None; Secure - - csrftoken=hrz9xgmUMk12Y5FPJeDqHtHHHdJAhnwOYKg5gtMLRfL5y6FXm9VYbLGEyxWuBngZ; - expires=Tue, 03 Jan 2023 17:39:26 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=llkqld8369tzp5d5i11fama9r1l3b0zr; expires=Tue, 18 Jan 2022 17:39:26 + - AWSALB=iBrO0dg9y6vWeNFqSkZ+CMPplWQmlcsSH1iLar0pZsTsvUvVLzL96U0d7NxhSTb4LtUdHYk1tcdaNj1J8Ah78G1KQbybF5Z8Lc1uP4h49uN+dSB6/FzfUGTNlOuu; + Expires=Fri, 14 Oct 2022 15:32:05 GMT; Path=/ + - AWSALBCORS=iBrO0dg9y6vWeNFqSkZ+CMPplWQmlcsSH1iLar0pZsTsvUvVLzL96U0d7NxhSTb4LtUdHYk1tcdaNj1J8Ah78G1KQbybF5Z8Lc1uP4h49uN+dSB6/FzfUGTNlOuu; + Expires=Fri, 14 Oct 2022 15:32:05 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=B5V2LYxRqV48bJGug2nZgFOX+F+fTSwZ2smoXSnAiGgNOB4qj6oyBrZiWNBQ8MOHMTuVrnicTGXXCLI8V/6mcaaTSKbN6fzdM7rBWsXsCmPNanRm4U5KFVZrJUgp6+cK6YMturQ09RerHGx84vOnCnr0MEsBP1fQtskO6vifatYS; + Expires=Fri, 14 Oct 2022 15:32:05 GMT; Path=/ + - AWSALBTGCORS=B5V2LYxRqV48bJGug2nZgFOX+F+fTSwZ2smoXSnAiGgNOB4qj6oyBrZiWNBQ8MOHMTuVrnicTGXXCLI8V/6mcaaTSKbN6fzdM7rBWsXsCmPNanRm4U5KFVZrJUgp6+cK6YMturQ09RerHGx84vOnCnr0MEsBP1fQtskO6vifatYS; + Expires=Fri, 14 Oct 2022 15:32:05 GMT; Path=/; SameSite=None; Secure + - csrftoken=7sw4i8qZAj1MtSsCxUnAMOmuppl9YfYYGBzB3Il25KW2AnCqxbODaVjFBfU1yYrI; + expires=Fri, 06 Oct 2023 15:32:07 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ne0mbktheram4j4l28rrp9l4ti0flr0l; expires=Fri, 21 Oct 2022 15:32:07 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/ + - https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/ Vary: - Accept, Cookie, Origin Allow: @@ -193,11 +182,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/","id":"6da58cf2-2e90-47b7-bb43-5b58bcb5967f","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:39:26.597326Z","modified_at":"2022-01-04T17:39:26.597326Z"}' - recorded_at: Tue, 04 Jan 2022 17:39:26 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/","id":"2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:32:07.086902Z","modified_at":"2022-10-07T15:32:07.086902Z"}' + recorded_at: Fri, 07 Oct 2022 15:32:07 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -205,7 +194,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -218,25 +207,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:39:27 GMT + - Fri, 07 Oct 2022 15:32:08 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=T4WXB07MXhpBNnYAf+zh8oC5tI40GRhpqB61xyjZVjvJSkdLsWzVmP69CZn1gIsdfZgherILZHFcJQYIHzgnsz03vF29fRLcjXsvXdPRC/PXSexPDtLjUYe3m2tc; - Expires=Tue, 11 Jan 2022 17:39:26 GMT; Path=/ - - AWSALBCORS=T4WXB07MXhpBNnYAf+zh8oC5tI40GRhpqB61xyjZVjvJSkdLsWzVmP69CZn1gIsdfZgherILZHFcJQYIHzgnsz03vF29fRLcjXsvXdPRC/PXSexPDtLjUYe3m2tc; - Expires=Tue, 11 Jan 2022 17:39:26 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=u55or5l+C/2ivnWgpHqn9PEY+JGXqN0DP2fmPpV/aZU9Ht5AOymWGd10/Rs9dmqEK7xzOi0Rhdbh+iT58SlKiNMxHqeAyHfD0GwL0ngDh1nQvGeIRhXu3X7GMhpnGuN7N0iTWm8joM/Mi9izcGcQzzCly+ju2tVNG3ZvQxeFWjH4; - Expires=Tue, 11 Jan 2022 17:39:26 GMT; Path=/ - - AWSALBTGCORS=u55or5l+C/2ivnWgpHqn9PEY+JGXqN0DP2fmPpV/aZU9Ht5AOymWGd10/Rs9dmqEK7xzOi0Rhdbh+iT58SlKiNMxHqeAyHfD0GwL0ngDh1nQvGeIRhXu3X7GMhpnGuN7N0iTWm8joM/Mi9izcGcQzzCly+ju2tVNG3ZvQxeFWjH4; - Expires=Tue, 11 Jan 2022 17:39:26 GMT; Path=/; SameSite=None; Secure - - csrftoken=oSAtVSrLjb8Vd1310i4B2OH0TrmtwuUcPlTvFgf2n8anEXCRP2cKaz3lhxivJW3J; - expires=Tue, 03 Jan 2023 17:39:27 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=aufvl8dwlascqqlcbcgnf6g24z9fmc9m; expires=Tue, 18 Jan 2022 17:39:27 + - AWSALB=XI/69u5fSB88ZfwdVqrGXng31S346VHR+MJx4LNwPBex+SSBKpNM1UB2Q4Sax9shOvrZR51QuE15rRhqhkgWuttlmjcCPhzvgeb6R/7edJ5hpZGVK84VuUEsEmij; + Expires=Fri, 14 Oct 2022 15:32:07 GMT; Path=/ + - AWSALBCORS=XI/69u5fSB88ZfwdVqrGXng31S346VHR+MJx4LNwPBex+SSBKpNM1UB2Q4Sax9shOvrZR51QuE15rRhqhkgWuttlmjcCPhzvgeb6R/7edJ5hpZGVK84VuUEsEmij; + Expires=Fri, 14 Oct 2022 15:32:07 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=Se8yOMTnu+rbtR9Yvpc1AhbNmgvi4BCWLxaSJzDEHoVklY2Cxdnt9a55bZfPiUX+kuiPgqJMu42g6u84u9JPbLADM/8lt39iwfuNDb7pRs5npYXgbQxeF7XMRO6SktkjVxeGLb6jbhkR1VfF8bdOSu/9O1+yXQbXsw+izbTyEMqy; + Expires=Fri, 14 Oct 2022 15:32:07 GMT; Path=/ + - AWSALBTGCORS=Se8yOMTnu+rbtR9Yvpc1AhbNmgvi4BCWLxaSJzDEHoVklY2Cxdnt9a55bZfPiUX+kuiPgqJMu42g6u84u9JPbLADM/8lt39iwfuNDb7pRs5npYXgbQxeF7XMRO6SktkjVxeGLb6jbhkR1VfF8bdOSu/9O1+yXQbXsw+izbTyEMqy; + Expires=Fri, 14 Oct 2022 15:32:07 GMT; Path=/; SameSite=None; Secure + - csrftoken=t5nEk2epOgV3olQvj6liE4BQEkvw6ObKE6y6TPz7OulolRdxprUggrgZFVKxDEg1; + expires=Fri, 06 Oct 2023 15:32:08 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=mbmwmpd4487hs31tozmr7d8s0yifyb9d; expires=Fri, 21 Oct 2022 15:32:08 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -254,23 +243,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/","id":"6da58cf2-2e90-47b7-bb43-5b58bcb5967f","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:39:26.597326Z","modified_at":"2022-01-04T17:39:26.597326Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:39:27 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/","id":"2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:32:07.086902Z","modified_at":"2022-10-07T15:32:07.086902Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:32:08 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/ body: encoding: UTF-8 string: '{"name":"one","type":"string"}' @@ -278,7 +256,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -291,30 +269,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:27 GMT + - Fri, 07 Oct 2022 15:32:10 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=1rb1jCqIEnSuSIc4pvfOhyRkFe/Ti9B9CdvmoGshEG3PIg2dyobX+KFV86PL8dywz2Dwl0wta3tHPrjLyeajl8oTg9WnuxV1d1oCaeoP1X2Jbis8m6jiD+7jBfy9; - Expires=Tue, 11 Jan 2022 17:39:27 GMT; Path=/ - - AWSALBCORS=1rb1jCqIEnSuSIc4pvfOhyRkFe/Ti9B9CdvmoGshEG3PIg2dyobX+KFV86PL8dywz2Dwl0wta3tHPrjLyeajl8oTg9WnuxV1d1oCaeoP1X2Jbis8m6jiD+7jBfy9; - Expires=Tue, 11 Jan 2022 17:39:27 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=TLZeJefVz8T/p6hQD8pMe8jYN8CKPtU/szNCtz31Dy0sFXOIHdeEuPfZDfaBxg4yaUaa7cgaJJLtq7VR6Sq1kHE/9PEhV2SMcU7igTZZed1ZAVTh28nhfTsZPrMSFLoO/HxOqLfzN8GLaBkXVj7pxyFlAMk6tkBaq3PMx2H+RGqa; - Expires=Tue, 11 Jan 2022 17:39:27 GMT; Path=/ - - AWSALBTGCORS=TLZeJefVz8T/p6hQD8pMe8jYN8CKPtU/szNCtz31Dy0sFXOIHdeEuPfZDfaBxg4yaUaa7cgaJJLtq7VR6Sq1kHE/9PEhV2SMcU7igTZZed1ZAVTh28nhfTsZPrMSFLoO/HxOqLfzN8GLaBkXVj7pxyFlAMk6tkBaq3PMx2H+RGqa; - Expires=Tue, 11 Jan 2022 17:39:27 GMT; Path=/; SameSite=None; Secure - - csrftoken=BP4Bxo3fTZdsAATfZuuKt1a7dMg2kJCE06ucfx54aBJSkWRJhFCQzrRcfwWRioby; - expires=Tue, 03 Jan 2023 17:39:27 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=9126fnam09nvw9at523ahc014fbmjfik; expires=Tue, 18 Jan 2022 17:39:27 + - AWSALB=Ok0HZy2bGmUblfzzhVgZGGtkup8R27mEB6dve56dmFxPHScu7yfos6tOe10obh4dbc0l3QtxWT/B8NA4yu7i/FbdQb5kTLRh/wsnyn0aTJYFRGxuZX3oA2FnX0HG; + Expires=Fri, 14 Oct 2022 15:32:08 GMT; Path=/ + - AWSALBCORS=Ok0HZy2bGmUblfzzhVgZGGtkup8R27mEB6dve56dmFxPHScu7yfos6tOe10obh4dbc0l3QtxWT/B8NA4yu7i/FbdQb5kTLRh/wsnyn0aTJYFRGxuZX3oA2FnX0HG; + Expires=Fri, 14 Oct 2022 15:32:08 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=sR6LCMdzdSFS4d3TNp3NEpnjF3NOVclOAd/t4iQ4dJ+2qZdkHEKgovsfxQTzIucE2ZFnnQVxM3nWFGiVhRtZUYyOtrvwYYPtNjf2W+q1DFc1GjNaz+dnWNHm7/9HMcbQ96R4VviopyRPs/A3eQdEPaRFfSKzpiaXpsXz6N7FkOrC; + Expires=Fri, 14 Oct 2022 15:32:08 GMT; Path=/ + - AWSALBTGCORS=sR6LCMdzdSFS4d3TNp3NEpnjF3NOVclOAd/t4iQ4dJ+2qZdkHEKgovsfxQTzIucE2ZFnnQVxM3nWFGiVhRtZUYyOtrvwYYPtNjf2W+q1DFc1GjNaz+dnWNHm7/9HMcbQ96R4VviopyRPs/A3eQdEPaRFfSKzpiaXpsXz6N7FkOrC; + Expires=Fri, 14 Oct 2022 15:32:08 GMT; Path=/; SameSite=None; Secure + - csrftoken=00LsIGLypLKC5jo2GQbgMwD9kEbjDHlmIBVYNGj59gfvD3pvCF1uvJGeDsm1gXWY; + expires=Fri, 06 Oct 2023 15:32:10 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=mmish9o9slmukjbuiww3fseh6uxgjwzw; expires=Fri, 21 Oct 2022 15:32:10 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/b8b27d99-bacb-499e-bbb9-6d6cf1ea0cda/ + - https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/e0411d7b-f673-4baf-b7dc-a9ea3a6dbf0e/ Vary: - Accept, Cookie, Origin Allow: @@ -329,11 +307,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/b8b27d99-bacb-499e-bbb9-6d6cf1ea0cda/","id":"b8b27d99-bacb-499e-bbb9-6d6cf1ea0cda","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T17:39:27.804176Z","modified_at":"2022-01-04T17:39:27.804176Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:27 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/e0411d7b-f673-4baf-b7dc-a9ea3a6dbf0e/","id":"e0411d7b-f673-4baf-b7dc-a9ea3a6dbf0e","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:32:10.016538Z","modified_at":"2022-10-07T15:32:10.016538Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:32:10 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/ body: encoding: UTF-8 string: '{"name":"two","type":"string"}' @@ -341,7 +319,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -354,30 +332,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:29 GMT + - Fri, 07 Oct 2022 15:32:11 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=+nH/cqbG06XcVAn6fsFP8YQq4houvjOL2SURibZi5F3q+ll+lA4UCAv3djFeQWKcTFxTissrUGFh4s8+961xVrvdakCSyLtsBkLmxz+dKv0WKyrcxPGIRBadN0D5; - Expires=Tue, 11 Jan 2022 17:39:28 GMT; Path=/ - - AWSALBCORS=+nH/cqbG06XcVAn6fsFP8YQq4houvjOL2SURibZi5F3q+ll+lA4UCAv3djFeQWKcTFxTissrUGFh4s8+961xVrvdakCSyLtsBkLmxz+dKv0WKyrcxPGIRBadN0D5; - Expires=Tue, 11 Jan 2022 17:39:28 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=+HWqyz9rc3Y8Ua8CK+GC+mg3Y2KVWaeCVPy05GTN3LdFQl/eynVv3XAwzCn5W9V5L7rOs1LF6RCVCrhvKmPoPhGtLPOFC2IRzlPqYp3bEEaUQaaLlL8buFFS9jWdWOlVMvB+m6VBQ6BNHSyq2WNHl7nFxiTrivp5W/SCRQgo/23n; - Expires=Tue, 11 Jan 2022 17:39:28 GMT; Path=/ - - AWSALBTGCORS=+HWqyz9rc3Y8Ua8CK+GC+mg3Y2KVWaeCVPy05GTN3LdFQl/eynVv3XAwzCn5W9V5L7rOs1LF6RCVCrhvKmPoPhGtLPOFC2IRzlPqYp3bEEaUQaaLlL8buFFS9jWdWOlVMvB+m6VBQ6BNHSyq2WNHl7nFxiTrivp5W/SCRQgo/23n; - Expires=Tue, 11 Jan 2022 17:39:28 GMT; Path=/; SameSite=None; Secure - - csrftoken=WJEVcT7SiZinu3hCI5L9PnobMUpwrqePuBwxXXU2tN3cfbGftn1mdxZwDJBQ2pe6; - expires=Tue, 03 Jan 2023 17:39:29 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=8g7qw53miwpmqgv9eusqd73id1kln576; expires=Tue, 18 Jan 2022 17:39:29 + - AWSALB=N9thTwAbPKNrutdKm+GnTweQXKYwNBxLL8bOOhR3jN9SDQqETyKStXGAbz/YL0pNLEvZKE2n70Jn2icqOFmCVojopUGo62XQNTmordiAbxxab/rUmvX5XcxnSBLC; + Expires=Fri, 14 Oct 2022 15:32:10 GMT; Path=/ + - AWSALBCORS=N9thTwAbPKNrutdKm+GnTweQXKYwNBxLL8bOOhR3jN9SDQqETyKStXGAbz/YL0pNLEvZKE2n70Jn2icqOFmCVojopUGo62XQNTmordiAbxxab/rUmvX5XcxnSBLC; + Expires=Fri, 14 Oct 2022 15:32:10 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=IjMqmaUaxkXkVRTC23c5OP19bZy6wdiENQ3C6eFxK4nhK0xTSsJtyzJJIczFdmWctOb2c9y726OfDAMf/xZuWSB773R4ZWSCbPVIQikgGs9tlNv0Cbg7gLOOOsOnQQmUYoL44ByWEtyF0RYUbHag7D23uwl6W8YZyH0IM9FnqycM; + Expires=Fri, 14 Oct 2022 15:32:10 GMT; Path=/ + - AWSALBTGCORS=IjMqmaUaxkXkVRTC23c5OP19bZy6wdiENQ3C6eFxK4nhK0xTSsJtyzJJIczFdmWctOb2c9y726OfDAMf/xZuWSB773R4ZWSCbPVIQikgGs9tlNv0Cbg7gLOOOsOnQQmUYoL44ByWEtyF0RYUbHag7D23uwl6W8YZyH0IM9FnqycM; + Expires=Fri, 14 Oct 2022 15:32:10 GMT; Path=/; SameSite=None; Secure + - csrftoken=z9NRb28DmcO8cjzBVTQBR2b0pN9eQsz5JeqQ4e9zXKRU6OC1VDcQEza5Ftdr1Uxa; + expires=Fri, 06 Oct 2023 15:32:11 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=fj70982aed1wdroqx7tcccggjc168ht5; expires=Fri, 21 Oct 2022 15:32:11 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/44f6c043-cc8b-412f-bffd-625d8c1128e1/ + - https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/d0c5d608-3129-4fb1-81ea-83c10d58221c/ Vary: - Accept, Cookie, Origin Allow: @@ -392,11 +370,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/44f6c043-cc8b-412f-bffd-625d8c1128e1/","id":"44f6c043-cc8b-412f-bffd-625d8c1128e1","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T17:39:29.723392Z","modified_at":"2022-01-04T17:39:29.723392Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:29 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/d0c5d608-3129-4fb1-81ea-83c10d58221c/","id":"d0c5d608-3129-4fb1-81ea-83c10d58221c","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:32:11.541531Z","modified_at":"2022-10-07T15:32:11.541531Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:32:11 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/templates/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/templates/ body: encoding: UTF-8 string: '{"name":"tone","body":"tmpl1 {{one}}"}' @@ -404,7 +382,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -417,30 +395,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:30 GMT + - Fri, 07 Oct 2022 15:32:13 GMT Content-Type: - application/json Content-Length: - - '771' + - '820' Connection: - keep-alive Set-Cookie: - - AWSALB=rnvAyRzw66InSSPO7mvzfPbq8nKFaHCALbwYRNnx7tSsP1spBOdF7uy+uQvhkCJmamkM65lsL3vHY028Xdtrp6ZlSu5WNaUnXDBlXzD8IIJQO0+a5B5mzDcjFLvt; - Expires=Tue, 11 Jan 2022 17:39:30 GMT; Path=/ - - AWSALBCORS=rnvAyRzw66InSSPO7mvzfPbq8nKFaHCALbwYRNnx7tSsP1spBOdF7uy+uQvhkCJmamkM65lsL3vHY028Xdtrp6ZlSu5WNaUnXDBlXzD8IIJQO0+a5B5mzDcjFLvt; - Expires=Tue, 11 Jan 2022 17:39:30 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=dVW3li6GkENi3nvjobJf2cmt8jMIltUcgVSTc/Mt7sW3CLGt/AUIwaWNL546L7xAQdi57E6Y8MQoy+SiRu7iz470aUKlLISMFoziMexI9m1uX+R/yfiCZ/NCHwVZAyOEAsHdLrsadAaqJB6NKEkWbk8V6pLopJUaVAjrTTJQ2Zzf; - Expires=Tue, 11 Jan 2022 17:39:30 GMT; Path=/ - - AWSALBTGCORS=dVW3li6GkENi3nvjobJf2cmt8jMIltUcgVSTc/Mt7sW3CLGt/AUIwaWNL546L7xAQdi57E6Y8MQoy+SiRu7iz470aUKlLISMFoziMexI9m1uX+R/yfiCZ/NCHwVZAyOEAsHdLrsadAaqJB6NKEkWbk8V6pLopJUaVAjrTTJQ2Zzf; - Expires=Tue, 11 Jan 2022 17:39:30 GMT; Path=/; SameSite=None; Secure - - csrftoken=0vowBc0mhtbNGU5gugRTUcSKinAgQoknX3yWQnciVnNYXqQTPLzRwf1i96nOZbkB; - expires=Tue, 03 Jan 2023 17:39:30 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=goismq4tsueeq3cfhn6w54hy15f1rf29; expires=Tue, 18 Jan 2022 17:39:30 + - AWSALB=XjaxzefJQ7w9JuiazDw3FnF3Pl7wq+Qv0/YJShnmzXhV9oyLquXz4zHkN3Uu+glD0LxjoNCcwXylh5vI6GNyOUFvjpZO0zjy7cpIhsQxpRzdxG9BVSh2NAwAj9rr; + Expires=Fri, 14 Oct 2022 15:32:11 GMT; Path=/ + - AWSALBCORS=XjaxzefJQ7w9JuiazDw3FnF3Pl7wq+Qv0/YJShnmzXhV9oyLquXz4zHkN3Uu+glD0LxjoNCcwXylh5vI6GNyOUFvjpZO0zjy7cpIhsQxpRzdxG9BVSh2NAwAj9rr; + Expires=Fri, 14 Oct 2022 15:32:11 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=Y7ZQApJD7Hci0Nn9vARQmb6fXA2G/0nPGxd73il9z3xIvsYIIqFvMBZC725XzQAhTmKoBIj1aX6q9CWI5U3viN2byZGtnXhdNLG8YS0VjQDV0mQKv6Eh7iZs3QBf+ganzKBiaJJOvuSGcQz6vd0V2c6TYsFzOhioHBOVqTL++tJw; + Expires=Fri, 14 Oct 2022 15:32:11 GMT; Path=/ + - AWSALBTGCORS=Y7ZQApJD7Hci0Nn9vARQmb6fXA2G/0nPGxd73il9z3xIvsYIIqFvMBZC725XzQAhTmKoBIj1aX6q9CWI5U3viN2byZGtnXhdNLG8YS0VjQDV0mQKv6Eh7iZs3QBf+ganzKBiaJJOvuSGcQz6vd0V2c6TYsFzOhioHBOVqTL++tJw; + Expires=Fri, 14 Oct 2022 15:32:11 GMT; Path=/; SameSite=None; Secure + - csrftoken=xndAs3SeJXidD3I5KbaY0OERBYqGVC9htN1mOELRRPwJNntLmpLpEAsD9xcZbHv5; + expires=Fri, 06 Oct 2023 15:32:13 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=n8zz56qqgb3kox34tgl74zd70tlqrb2a; expires=Fri, 21 Oct 2022 15:32:13 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/templates/5cb691f6-230e-4643-9612-7630d34deac4/ + - https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/templates/bd765e5e-4996-495e-bb03-8762bbfa50e8/ Vary: - Accept, Cookie, Origin Allow: @@ -455,12 +433,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/templates/5cb691f6-230e-4643-9612-7630d34deac4/","id":"5cb691f6-230e-4643-9612-7630d34deac4","name":"tone","description":"","evaluated":false,"body":"tmpl1 - {{one}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/b8b27d99-bacb-499e-bbb9-6d6cf1ea0cda/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:39:30.310220Z","modified_at":"2022-01-04T17:39:30.310220Z","parameters":["https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/b8b27d99-bacb-499e-bbb9-6d6cf1ea0cda/"],"references":[],"referenced_by":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:30 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/templates/bd765e5e-4996-495e-bb03-8762bbfa50e8/","id":"bd765e5e-4996-495e-bb03-8762bbfa50e8","name":"tone","description":"","evaluated":false,"body":"tmpl1 + {{one}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/e0411d7b-f673-4baf-b7dc-a9ea3a6dbf0e/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:32:13.060404Z","modified_at":"2022-10-07T15:32:13.060404Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/e0411d7b-f673-4baf-b7dc-a9ea3a6dbf0e/"],"references":[],"referenced_by":[]}' + recorded_at: Fri, 07 Oct 2022 15:32:13 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/templates/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/templates/ body: encoding: UTF-8 string: '{"name":"ttwo","body":"tmpl2 {{two}}"}' @@ -468,7 +446,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -481,30 +459,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:30 GMT + - Fri, 07 Oct 2022 15:32:14 GMT Content-Type: - application/json Content-Length: - - '771' + - '820' Connection: - keep-alive Set-Cookie: - - AWSALB=i9d1BdSX3G/qUm570Y0VI+NiRxFfoQseNeMTvh/j+oIv3VQFyU2BamR7oFpSX17/hf0A9gJO83T+UjqYk+Y6MtAzVUxTv05TW/GQ2bSx5dIsG6OVNfzSa7KK+khH; - Expires=Tue, 11 Jan 2022 17:39:30 GMT; Path=/ - - AWSALBCORS=i9d1BdSX3G/qUm570Y0VI+NiRxFfoQseNeMTvh/j+oIv3VQFyU2BamR7oFpSX17/hf0A9gJO83T+UjqYk+Y6MtAzVUxTv05TW/GQ2bSx5dIsG6OVNfzSa7KK+khH; - Expires=Tue, 11 Jan 2022 17:39:30 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=/YXzz82HdC8oUqean3T5ERduG+4UucPtcXP2/Y5F7aopovEgPNt/5KGrfZ5IBShqQK+YgNdtGbrH8w8MmlHzqE0MRwUnqMp2mOzLPJKzPqNcB9qXD6BPVYIXnUbQuU9APW1f0YMko0NX7+9g9Hg7a5I6bzDRvtigFakq2UnipeJJ; - Expires=Tue, 11 Jan 2022 17:39:30 GMT; Path=/ - - AWSALBTGCORS=/YXzz82HdC8oUqean3T5ERduG+4UucPtcXP2/Y5F7aopovEgPNt/5KGrfZ5IBShqQK+YgNdtGbrH8w8MmlHzqE0MRwUnqMp2mOzLPJKzPqNcB9qXD6BPVYIXnUbQuU9APW1f0YMko0NX7+9g9Hg7a5I6bzDRvtigFakq2UnipeJJ; - Expires=Tue, 11 Jan 2022 17:39:30 GMT; Path=/; SameSite=None; Secure - - csrftoken=70QDNwILyqukx1KFnwnU4oHIlagxrCQdUXq7YE1VLU8NbK9C4OUB1qD7kLGAeH9A; - expires=Tue, 03 Jan 2023 17:39:30 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=zlraraky11494cyblm48f1ast4xycqm7; expires=Tue, 18 Jan 2022 17:39:30 + - AWSALB=UETeQwYcj7hLcgUJdBEaWn81mFlw3F6MELrGjB71j8DMK5OmGhMOTFkUHSD2irzkeg+J1/+FKmtlUQ9RDAGxJDhGSksTKdM4bsFzEZEaqm943QfBd0/TIFdw3VMB; + Expires=Fri, 14 Oct 2022 15:32:13 GMT; Path=/ + - AWSALBCORS=UETeQwYcj7hLcgUJdBEaWn81mFlw3F6MELrGjB71j8DMK5OmGhMOTFkUHSD2irzkeg+J1/+FKmtlUQ9RDAGxJDhGSksTKdM4bsFzEZEaqm943QfBd0/TIFdw3VMB; + Expires=Fri, 14 Oct 2022 15:32:13 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=FjTLnQ7QK0DiOEDqCn/j9PA+R3yn+BeCmvaSfMBVR6XYmVW1iG9h7KXoHh6CDhZlioYBgUiZ9u41aEyaP5L8344mme0SCLv/49UGNxP+giIGKPe3dgOU3mhrlEL9zfwC20wRnag/CUqexiHPEidohhG89P18WF67cZXR4zlKDsUw; + Expires=Fri, 14 Oct 2022 15:32:13 GMT; Path=/ + - AWSALBTGCORS=FjTLnQ7QK0DiOEDqCn/j9PA+R3yn+BeCmvaSfMBVR6XYmVW1iG9h7KXoHh6CDhZlioYBgUiZ9u41aEyaP5L8344mme0SCLv/49UGNxP+giIGKPe3dgOU3mhrlEL9zfwC20wRnag/CUqexiHPEidohhG89P18WF67cZXR4zlKDsUw; + Expires=Fri, 14 Oct 2022 15:32:13 GMT; Path=/; SameSite=None; Secure + - csrftoken=UxpF8OHOahrGBQ8IZreWFxy4tpkYsRjDpSojSYwvOUIJD3flSG9o6amNrnmfaCdG; + expires=Fri, 06 Oct 2023 15:32:14 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=wwhe6o7ps1n4d9mdstllj0gw6ctomlzf; expires=Fri, 21 Oct 2022 15:32:14 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/templates/daabfb58-421d-4c78-ba3b-0ca3eb2fca03/ + - https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/templates/3ca03775-e384-4e89-964a-cc08e1c114b0/ Vary: - Accept, Cookie, Origin Allow: @@ -519,12 +497,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/templates/daabfb58-421d-4c78-ba3b-0ca3eb2fca03/","id":"daabfb58-421d-4c78-ba3b-0ca3eb2fca03","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 - {{two}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/44f6c043-cc8b-412f-bffd-625d8c1128e1/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:39:30.902528Z","modified_at":"2022-01-04T17:39:30.902528Z","parameters":["https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/44f6c043-cc8b-412f-bffd-625d8c1128e1/"],"references":[],"referenced_by":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:30 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/templates/3ca03775-e384-4e89-964a-cc08e1c114b0/","id":"3ca03775-e384-4e89-964a-cc08e1c114b0","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 + {{two}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/d0c5d608-3129-4fb1-81ea-83c10d58221c/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:32:14.657501Z","modified_at":"2022-10-07T15:32:14.657501Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/d0c5d608-3129-4fb1-81ea-83c10d58221c/"],"references":[],"referenced_by":[]}' + recorded_at: Fri, 07 Oct 2022 15:32:14 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/ body: encoding: UTF-8 string: '{"name":"three","secret":true,"type":"string"}' @@ -532,7 +510,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -545,30 +523,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:31 GMT + - Fri, 07 Oct 2022 15:32:16 GMT Content-Type: - application/json Content-Length: - - '1358' + - '968' Connection: - keep-alive Set-Cookie: - - AWSALB=NTu1TKBPUEQApcmj2rbQToQWBuMJxdpC7oL60qCpzTzS5lPmZCkKcVLHHLkBz8Cpx0q7On+GdlNx/oiKrRdRAR0q67cO4dEQF0Nkv8cYoY5jYnomXwmK3T9u8CwB; - Expires=Tue, 11 Jan 2022 17:39:31 GMT; Path=/ - - AWSALBCORS=NTu1TKBPUEQApcmj2rbQToQWBuMJxdpC7oL60qCpzTzS5lPmZCkKcVLHHLkBz8Cpx0q7On+GdlNx/oiKrRdRAR0q67cO4dEQF0Nkv8cYoY5jYnomXwmK3T9u8CwB; - Expires=Tue, 11 Jan 2022 17:39:31 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=Ik/frXrBhQE7a16qBb0RVB4COwtab8N+UmP0g8KdBjFOnQvFq8l6FBNosuvAkHFl/yp74rGbdw2pZ+WI5V4dPLxYh9a7zHXGLzl4lp0ZHvD1tj1WWgol1zHf2QsxbOuwqwCY3iTsE9RcVvp7Qpar+nTRqydmgC25+3ScCEIiuwhb; - Expires=Tue, 11 Jan 2022 17:39:31 GMT; Path=/ - - AWSALBTGCORS=Ik/frXrBhQE7a16qBb0RVB4COwtab8N+UmP0g8KdBjFOnQvFq8l6FBNosuvAkHFl/yp74rGbdw2pZ+WI5V4dPLxYh9a7zHXGLzl4lp0ZHvD1tj1WWgol1zHf2QsxbOuwqwCY3iTsE9RcVvp7Qpar+nTRqydmgC25+3ScCEIiuwhb; - Expires=Tue, 11 Jan 2022 17:39:31 GMT; Path=/; SameSite=None; Secure - - csrftoken=zaY2qAXQitSI6oFQUCHuj1ohfWthgeghAcstOj0gmlaUHnhimp0rzH5ySxnVNE1s; - expires=Tue, 03 Jan 2023 17:39:31 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=n49dbntmdrl6eqyo1nsea6atzvpk177h; expires=Tue, 18 Jan 2022 17:39:31 + - AWSALB=g7Tbb9o2Xs/GoJpj66O4a2cydjoVOstbQwYFAJvvKOyyM8GrIs38JTrCGaCNXazjMTa5iE1VsOT1WqKeKgJW5OJwTYrkmWzAiXytg5F7zpB4YULEiHY9W8G1MarE; + Expires=Fri, 14 Oct 2022 15:32:14 GMT; Path=/ + - AWSALBCORS=g7Tbb9o2Xs/GoJpj66O4a2cydjoVOstbQwYFAJvvKOyyM8GrIs38JTrCGaCNXazjMTa5iE1VsOT1WqKeKgJW5OJwTYrkmWzAiXytg5F7zpB4YULEiHY9W8G1MarE; + Expires=Fri, 14 Oct 2022 15:32:14 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=Kk9+VJWGP8JSsObXFDs2QVCkQIQzlTcGFsMau/DnUCBqgRf0fzhbz+q7Pd+/+sPBQuD/D9zX7Q0ZMzUdyq3z41/PQhZ0HMzgj5U65ZBFq5HIEL/ymbFONVUjx7nLV2FspzZWigHsg/XWVXBqB2w72kyYjHl8Rur7b+q++tV/7gwB; + Expires=Fri, 14 Oct 2022 15:32:14 GMT; Path=/ + - AWSALBTGCORS=Kk9+VJWGP8JSsObXFDs2QVCkQIQzlTcGFsMau/DnUCBqgRf0fzhbz+q7Pd+/+sPBQuD/D9zX7Q0ZMzUdyq3z41/PQhZ0HMzgj5U65ZBFq5HIEL/ymbFONVUjx7nLV2FspzZWigHsg/XWVXBqB2w72kyYjHl8Rur7b+q++tV/7gwB; + Expires=Fri, 14 Oct 2022 15:32:14 GMT; Path=/; SameSite=None; Secure + - csrftoken=CEL8db1WhRyoeY0DwGNKetqSFCoh8MdoiNPiekLIHzNzd3gwyP2ise8U46nVDbtn; + expires=Fri, 06 Oct 2023 15:32:16 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ypsgum67xdibc5ybrfssnvqfc4ex1ztx; expires=Fri, 21 Oct 2022 15:32:16 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/319bc991-d982-42fe-8938-2ac6416e87f3/ + - https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/ad82a5ad-0a1a-40c8-9018-70182fc44c44/ Vary: - Accept, Cookie, Origin Allow: @@ -583,11 +561,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/319bc991-d982-42fe-8938-2ac6416e87f3/","id":"319bc991-d982-42fe-8938-2ac6416e87f3","name":"three","description":"","secret":true,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T17:39:31.826232Z","modified_at":"2022-01-04T17:39:31.826232Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:31 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/ad82a5ad-0a1a-40c8-9018-70182fc44c44/","id":"ad82a5ad-0a1a-40c8-9018-70182fc44c44","name":"three","description":"","secret":true,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:32:16.001587Z","modified_at":"2022-10-07T15:32:16.001587Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:32:16 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/environments/ + uri: https://api.staging.cloudtruth.io/api/v1/environments/ body: encoding: US-ASCII string: '' @@ -595,7 +573,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -608,25 +586,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:39:32 GMT + - Fri, 07 Oct 2022 15:32:17 GMT Content-Type: - application/json Content-Length: - - '4139' + - '2085' Connection: - keep-alive Set-Cookie: - - AWSALB=/i6k8KrqcJ1UkjaW9bEL5cili6iwWXzB6rJ7uGX+OZ2VnNKSePgiHeyvq++c3LMZvE+Zz05mEwqU96fk/17JhT80ht7FTHRKr8JYlIEtKKg98fvM8vO3t7HqXBwU; - Expires=Tue, 11 Jan 2022 17:39:32 GMT; Path=/ - - AWSALBCORS=/i6k8KrqcJ1UkjaW9bEL5cili6iwWXzB6rJ7uGX+OZ2VnNKSePgiHeyvq++c3LMZvE+Zz05mEwqU96fk/17JhT80ht7FTHRKr8JYlIEtKKg98fvM8vO3t7HqXBwU; - Expires=Tue, 11 Jan 2022 17:39:32 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=TiD6X7r6L6Hn0GhGw5D0FGZVjH3rtD71sJmbeYtdCB4Yh1E8sisvicrK2/LD/caEJYEQ3bOFIZTxkIaUz4tSlZVoqAmYQpfhNMt71tZ7/pLYe8WmUlQgyv/LSQcpO2q3U/49sabLIcgsRJSH01hphT2rGCSPEcmaq2FeVYmjrlSx; - Expires=Tue, 11 Jan 2022 17:39:32 GMT; Path=/ - - AWSALBTGCORS=TiD6X7r6L6Hn0GhGw5D0FGZVjH3rtD71sJmbeYtdCB4Yh1E8sisvicrK2/LD/caEJYEQ3bOFIZTxkIaUz4tSlZVoqAmYQpfhNMt71tZ7/pLYe8WmUlQgyv/LSQcpO2q3U/49sabLIcgsRJSH01hphT2rGCSPEcmaq2FeVYmjrlSx; - Expires=Tue, 11 Jan 2022 17:39:32 GMT; Path=/; SameSite=None; Secure - - csrftoken=Q8y23fB1CEhDXUyuJrgqcOashT2iMlgpT8rFEOxEIcCcGBzEnjpuDTx0xfD0ePHT; - expires=Tue, 03 Jan 2023 17:39:32 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=83wxq8oy15jba14xu54duspbzsb6f8gq; expires=Tue, 18 Jan 2022 17:39:32 + - AWSALB=XqW2yfisQglmV+MphedvtiZiJB3QXXr45ZJ5ukL/wPUo5LmaF+7S8XOjZwWwfvjp+Yz9erv0WpElbw0dLcRiB1spO51VKMHSuq14VxarI2ocJFFAzD1nOvyUrT51; + Expires=Fri, 14 Oct 2022 15:32:16 GMT; Path=/ + - AWSALBCORS=XqW2yfisQglmV+MphedvtiZiJB3QXXr45ZJ5ukL/wPUo5LmaF+7S8XOjZwWwfvjp+Yz9erv0WpElbw0dLcRiB1spO51VKMHSuq14VxarI2ocJFFAzD1nOvyUrT51; + Expires=Fri, 14 Oct 2022 15:32:16 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=fWOhlYwANnl5OsVd9nwtZuRiTE38UqxHrdHnk9Z5KbmmZQl/tLDb+dfA3rrbU6X1PwZYzT10VjmHM6uBmR6HRSvzQSlbvz0+AGtwMbqoWJs0A6rHKEEHITnMuxCdzHGXLrNWv6m1tiV0betoWi50nILVHy7s9MjqdWi62TeUFM7V; + Expires=Fri, 14 Oct 2022 15:32:16 GMT; Path=/ + - AWSALBTGCORS=fWOhlYwANnl5OsVd9nwtZuRiTE38UqxHrdHnk9Z5KbmmZQl/tLDb+dfA3rrbU6X1PwZYzT10VjmHM6uBmR6HRSvzQSlbvz0+AGtwMbqoWJs0A6rHKEEHITnMuxCdzHGXLrNWv6m1tiV0betoWi50nILVHy7s9MjqdWi62TeUFM7V; + Expires=Fri, 14 Oct 2022 15:32:16 GMT; Path=/; SameSite=None; Secure + - csrftoken=0m4LSdDAYkR83E35cWx8AnkhPqa8zu4iMzgy71k2WqZItsIPIlXSluJKZntTV4Rw; + expires=Fri, 06 Oct 2023 15:32:17 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=j6iwlwmerf1wqi9fnjj7htnun4dbv4e4; expires=Fri, 21 Oct 2022 15:32:17 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -644,24 +622,23 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":9,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","id":"e8bc190d-0354-4e66-91c9-64501e501ec5","name":"default","description":"The - auto-generated default environment.","parent":null,"children":["https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/"],"created_at":"2021-07-20T18:14:09.023022Z","modified_at":"2022-01-04T17:39:30.902528Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","id":"c4de304d-5dd4-4a41-80ec-9a469f1aa4f5","name":"development","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/"],"created_at":"2021-07-20T18:14:09.035255Z","modified_at":"2022-01-04T17:38:49.782969Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/","id":"12b9c81b-9002-423b-9ca7-22cece646d07","name":"dev-matt","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/","children":[],"created_at":"2021-07-21T19:53:37.534082Z","modified_at":"2021-07-26T22:01:23.472634Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","id":"2281d9da-8376-4f45-baf2-372a71260dfa","name":"europe","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T19:53:47.438517Z","modified_at":"2021-07-26T22:01:29.331661Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/","id":"c99d6ab9-4674-4f76-bb43-da0b19124e18","name":"local","description":"for - local development","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T19:53:50.000541Z","modified_at":"2021-07-26T22:01:32.150839Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/","id":"ef133a2e-3c9c-4229-a509-e56332baff40","name":"ops","description":"The - ops environment - infrastructure that acts as the entry point to the other - environment''s infrastructure","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-21T20:05:10.325110Z","modified_at":"2021-07-26T22:01:35.184068Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","id":"cde7cf9d-8bf2-46cb-9e97-dee9b99e4335","name":"production","description":"for - real","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":["https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/","https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/"],"created_at":"2021-07-20T18:14:09.058957Z","modified_at":"2021-10-26T18:14:38.859067Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/","id":"e4399ff4-a962-451b-adfb-7e504ad6bb6d","name":"staging","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","children":[],"created_at":"2021-07-20T18:14:09.047049Z","modified_at":"2021-07-26T18:46:21.385162Z"},{"url":"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/","id":"3afc0523-4722-4fa1-aaea-5d49beaa284d","name":"usa","description":"","parent":"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/","children":[],"created_at":"2021-07-21T20:05:24.767679Z","modified_at":"2021-07-26T18:44:51.186840Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:39:32 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","id":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","name":"default","description":"Default + environment, base for all environments.","parent":null,"children":["https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/"],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.112161Z","modified_at":"2022-06-02T17:13:09.641786Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","id":"8f2e37b9-b429-4987-bb85-abd24bd67274","name":"development","description":"Development + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.123839Z","modified_at":"2022-06-02T17:11:55.123839Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","id":"0663ac09-5883-452b-bc1a-00e3347fece5","name":"production","description":"Production + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.145580Z","modified_at":"2022-06-02T17:11:55.145580Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/","id":"fc970cc2-c24f-427d-9c7a-70acde9f1b64","name":"staging","description":"Staging + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.134547Z","modified_at":"2022-06-02T17:11:55.134547Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:32:17 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/319bc991-d982-42fe-8938-2ac6416e87f3/values/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/ad82a5ad-0a1a-40c8-9018-70182fc44c44/values/ body: encoding: UTF-8 - string: '{"environment":"e8bc190d-0354-4e66-91c9-64501e501ec5","external":false,"internal_value":"defaultthree"}' + string: '{"environment":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","external":false,"internal_value":"defaultthree"}' headers: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -674,30 +651,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:33 GMT + - Fri, 07 Oct 2022 15:32:19 GMT Content-Type: - application/json Content-Length: - - '926' + - '978' Connection: - keep-alive Set-Cookie: - - AWSALB=zUGifvLzNHNWJTaMjs9G8kfJXQhfBbG1iG1UbfgVNCrdY4F5obPoU+l/tFXvyW7Vpe9hLGuWVQgWuF0ubnUG9Y1P4p984xG8malWdcD+x+6+fvx+bofzycU68wd+; - Expires=Tue, 11 Jan 2022 17:39:32 GMT; Path=/ - - AWSALBCORS=zUGifvLzNHNWJTaMjs9G8kfJXQhfBbG1iG1UbfgVNCrdY4F5obPoU+l/tFXvyW7Vpe9hLGuWVQgWuF0ubnUG9Y1P4p984xG8malWdcD+x+6+fvx+bofzycU68wd+; - Expires=Tue, 11 Jan 2022 17:39:32 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=ckNhOYO/AGoZAT/syy4XuLEIWqqMs0373BpW4mdM0QCljQlHA09niXnShx6VqeQfMAsBEz8QC6LvqXqYDIk4wC8U25nu2pKxonfwu3WN95n47xLRwM+ROlyo91z8u33KSXdMMiJrYUVXUPOaqwoOMK/DqlBre/IuJXMPxxxEMReZ; - Expires=Tue, 11 Jan 2022 17:39:32 GMT; Path=/ - - AWSALBTGCORS=ckNhOYO/AGoZAT/syy4XuLEIWqqMs0373BpW4mdM0QCljQlHA09niXnShx6VqeQfMAsBEz8QC6LvqXqYDIk4wC8U25nu2pKxonfwu3WN95n47xLRwM+ROlyo91z8u33KSXdMMiJrYUVXUPOaqwoOMK/DqlBre/IuJXMPxxxEMReZ; - Expires=Tue, 11 Jan 2022 17:39:32 GMT; Path=/; SameSite=None; Secure - - csrftoken=xMZ0AFxtJ8zLLnvxe1Q8gvdjDjR2WIBwtDtfHv9gNdB8C64bUuNUMRyvNc1oY8tO; - expires=Tue, 03 Jan 2023 17:39:33 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=o1wib78926mfprbpqd6qhkhrnym9tzyl; expires=Tue, 18 Jan 2022 17:39:33 + - AWSALB=GCHLiU9FUzhcC5qq62EMq2YwhMdAzEAW52JDz/OCfEAuCYYYnB6bqbILUKcmg0wgRdIbpfyr8+uBEPpO0TUDV+g6slq6NdubPq3TQ+9ILmvPH+QfsWCXNO7ZbWkN; + Expires=Fri, 14 Oct 2022 15:32:18 GMT; Path=/ + - AWSALBCORS=GCHLiU9FUzhcC5qq62EMq2YwhMdAzEAW52JDz/OCfEAuCYYYnB6bqbILUKcmg0wgRdIbpfyr8+uBEPpO0TUDV+g6slq6NdubPq3TQ+9ILmvPH+QfsWCXNO7ZbWkN; + Expires=Fri, 14 Oct 2022 15:32:18 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=lFcMDe1kH72uhSHLKn3fhCjhD8soD8NL8NovlG0RvOjp6rbjQzA1ocyG19rVnwXSO+nYxLTUgDqDQKrOf+zy2lhWesjGjzK0E5OnZ4ei7kVMLZzjwXnWgjcAjETXyh/dsYI13VPAqybTxq8qnOr568HurazFF9QrR+eRbd2TEp2n; + Expires=Fri, 14 Oct 2022 15:32:18 GMT; Path=/ + - AWSALBTGCORS=lFcMDe1kH72uhSHLKn3fhCjhD8soD8NL8NovlG0RvOjp6rbjQzA1ocyG19rVnwXSO+nYxLTUgDqDQKrOf+zy2lhWesjGjzK0E5OnZ4ei7kVMLZzjwXnWgjcAjETXyh/dsYI13VPAqybTxq8qnOr568HurazFF9QrR+eRbd2TEp2n; + Expires=Fri, 14 Oct 2022 15:32:18 GMT; Path=/; SameSite=None; Secure + - csrftoken=aeNzkZod9GiJcZqGK9TPLtyJz7JOt8gSJrhsR5evguftRhNBLErIgiYEGByxAuVB; + expires=Fri, 06 Oct 2023 15:32:19 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=0l7zr4001dgennt52q2nfs16a0qu3aj5; expires=Fri, 21 Oct 2022 15:32:19 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/319bc991-d982-42fe-8938-2ac6416e87f3/values/2492423a-a6dd-4c15-b635-a157a9f9a6ba/ + - https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/ad82a5ad-0a1a-40c8-9018-70182fc44c44/values/3a5e0a4c-a081-4e8f-817f-89096439bc3e/ Vary: - Accept, Cookie, Origin Allow: @@ -712,11 +689,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/319bc991-d982-42fe-8938-2ac6416e87f3/values/2492423a-a6dd-4c15-b635-a157a9f9a6ba/","id":"2492423a-a6dd-4c15-b635-a157a9f9a6ba","environment":"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/","environment_name":"default","earliest_tag":null,"parameter":"https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/319bc991-d982-42fe-8938-2ac6416e87f3/","external":false,"external_fqn":"","external_filter":"","external_error":null,"internal_value":null,"interpolated":false,"value":"defaultthree","evaluated":false,"secret":true,"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-01-04T17:39:32.907973Z","modified_at":"2022-01-04T17:39:33.315046Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":null}' - recorded_at: Tue, 04 Jan 2022 17:39:33 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/ad82a5ad-0a1a-40c8-9018-70182fc44c44/values/3a5e0a4c-a081-4e8f-817f-89096439bc3e/","id":"3a5e0a4c-a081-4e8f-817f-89096439bc3e","environment":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","environment_name":"default","parameter":"https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/ad82a5ad-0a1a-40c8-9018-70182fc44c44/","external":false,"external_fqn":"","external_filter":"","external_error":null,"external_status":null,"internal_value":null,"interpolated":false,"value":"defaultthree","evaluated":false,"secret":true,"referenced_projects":[],"referenced_parameters":[],"referenced_templates":[],"created_at":"2022-10-07T15:32:19.623649Z","modified_at":"2022-10-07T15:32:19.623649Z","dynamic":false,"dynamic_error":null,"dynamic_filter":"","dynamic_fqn":"","static_value":null}' + recorded_at: Fri, 07 Oct 2022 15:32:19 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/templates/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/templates/ body: encoding: UTF-8 string: '{"name":"tthree","body":"tmpl3 {{three}}"}' @@ -724,7 +701,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -737,30 +714,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:34 GMT + - Fri, 07 Oct 2022 15:32:21 GMT Content-Type: - application/json Content-Length: - - '774' + - '824' Connection: - keep-alive Set-Cookie: - - AWSALB=ZoyIe5yFchv0CnKRLYerMhYvHD09RrhHL+6EyaMrRkFdZePFEFDEmeY8Bf4TZ3rs26XHThZ9pEA3gNzvI7P18k4raMDFY1/uLy3SNmyGFDbp6rKGyDGzrx2AeSHg; - Expires=Tue, 11 Jan 2022 17:39:33 GMT; Path=/ - - AWSALBCORS=ZoyIe5yFchv0CnKRLYerMhYvHD09RrhHL+6EyaMrRkFdZePFEFDEmeY8Bf4TZ3rs26XHThZ9pEA3gNzvI7P18k4raMDFY1/uLy3SNmyGFDbp6rKGyDGzrx2AeSHg; - Expires=Tue, 11 Jan 2022 17:39:33 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=sx2EFTFCvTPVwcWhpulCDM0P64eOp2LnC2L2FxTb2TDiCNuTut3kgZdiLRN0h9/NpGQsNkZLzfUxBCxKhEZjpPZUTZkUH4W1XzooHds2RA0rWSrtDbIQigPy0FWCJjAaHY+ap1BqkJitEOLZlW04TEWplUZ/hie/ZtYKlVy9SlRa; - Expires=Tue, 11 Jan 2022 17:39:33 GMT; Path=/ - - AWSALBTGCORS=sx2EFTFCvTPVwcWhpulCDM0P64eOp2LnC2L2FxTb2TDiCNuTut3kgZdiLRN0h9/NpGQsNkZLzfUxBCxKhEZjpPZUTZkUH4W1XzooHds2RA0rWSrtDbIQigPy0FWCJjAaHY+ap1BqkJitEOLZlW04TEWplUZ/hie/ZtYKlVy9SlRa; - Expires=Tue, 11 Jan 2022 17:39:33 GMT; Path=/; SameSite=None; Secure - - csrftoken=CbJiqCRyH60w3UK4rOtPjc86BWwqy1jcWXuZpFFdm08MjBoWdEoK4JgHSpKoUKjZ; - expires=Tue, 03 Jan 2023 17:39:34 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=rn0edmayi72nzymuf88ieb4uttxjcgy0; expires=Tue, 18 Jan 2022 17:39:34 + - AWSALB=Ji1RTuxgxaY0yFCLq7DkghxccphL3oDx0009yLAU/LLB6spmNH7E3THaGT3UcMZCv8SCeAxdAzeXGL7cmMGd6zKeUK77SbhHsN6Am6gqtFg/BIP/4rfK+SqZMbs1; + Expires=Fri, 14 Oct 2022 15:32:19 GMT; Path=/ + - AWSALBCORS=Ji1RTuxgxaY0yFCLq7DkghxccphL3oDx0009yLAU/LLB6spmNH7E3THaGT3UcMZCv8SCeAxdAzeXGL7cmMGd6zKeUK77SbhHsN6Am6gqtFg/BIP/4rfK+SqZMbs1; + Expires=Fri, 14 Oct 2022 15:32:19 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=Mm6zU9qoMbEfDm/bnyL7Hylk15M4ee/BAbp15kUJP32GvPEE5L/duJ3JZ4chCXKF1fGhartgx1Ou36N8I7GSqlbc8rjRg4qycUiFfT6e8dSwt1Xqkn+Y8BKXJrFOaSpl2ZPWWoh1xHvydK1Qjx6u/cEvIocU4iUMubiN+q4NpPjf; + Expires=Fri, 14 Oct 2022 15:32:19 GMT; Path=/ + - AWSALBTGCORS=Mm6zU9qoMbEfDm/bnyL7Hylk15M4ee/BAbp15kUJP32GvPEE5L/duJ3JZ4chCXKF1fGhartgx1Ou36N8I7GSqlbc8rjRg4qycUiFfT6e8dSwt1Xqkn+Y8BKXJrFOaSpl2ZPWWoh1xHvydK1Qjx6u/cEvIocU4iUMubiN+q4NpPjf; + Expires=Fri, 14 Oct 2022 15:32:19 GMT; Path=/; SameSite=None; Secure + - csrftoken=07VSIzMYxorASUix5YWy2nevM99bskp3OXosTYJS9y4U1qv6zJqmbRQbjhz9Xik0; + expires=Fri, 06 Oct 2023 15:32:21 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=lmc12xxlo27wx5wfmsul8e4843my97ze; expires=Fri, 21 Oct 2022 15:32:21 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/templates/c0d325f6-c783-4d6d-9711-1ffc376ee429/ + - https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/templates/d45ef08e-ae21-4264-b4aa-c611168c8903/ Vary: - Accept, Cookie, Origin Allow: @@ -775,12 +752,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/templates/c0d325f6-c783-4d6d-9711-1ffc376ee429/","id":"c0d325f6-c783-4d6d-9711-1ffc376ee429","name":"tthree","description":"","evaluated":false,"body":"tmpl3 - {{three}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/319bc991-d982-42fe-8938-2ac6416e87f3/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":true,"created_at":"2022-01-04T17:39:34.101827Z","modified_at":"2022-01-04T17:39:34.101827Z","parameters":["https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/319bc991-d982-42fe-8938-2ac6416e87f3/"],"references":[],"referenced_by":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:34 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/templates/d45ef08e-ae21-4264-b4aa-c611168c8903/","id":"d45ef08e-ae21-4264-b4aa-c611168c8903","name":"tthree","description":"","evaluated":false,"body":"tmpl3 + {{three}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/ad82a5ad-0a1a-40c8-9018-70182fc44c44/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:32:21.750559Z","modified_at":"2022-10-07T15:32:21.750559Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/ad82a5ad-0a1a-40c8-9018-70182fc44c44/"],"references":[],"referenced_by":[]}' + recorded_at: Fri, 07 Oct 2022 15:32:21 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/templates/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/templates/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76 body: encoding: US-ASCII string: '' @@ -788,7 +765,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -801,25 +778,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:39:34 GMT + - Fri, 07 Oct 2022 15:32:23 GMT Content-Type: - application/json Content-Length: - - '2370' + - '2518' Connection: - keep-alive Set-Cookie: - - AWSALB=JLoIHKuAHukb4hMi7WazzZPFZ7CfAINF3Qm8cISEFeojRcLZLc9eJXeD1DenVesDZ+WilxPesvnLvMUWVH1t4Do9hom9LkQCz1nUd2lItm3oyRZ1FWUI+ZcRdq8w; - Expires=Tue, 11 Jan 2022 17:39:34 GMT; Path=/ - - AWSALBCORS=JLoIHKuAHukb4hMi7WazzZPFZ7CfAINF3Qm8cISEFeojRcLZLc9eJXeD1DenVesDZ+WilxPesvnLvMUWVH1t4Do9hom9LkQCz1nUd2lItm3oyRZ1FWUI+ZcRdq8w; - Expires=Tue, 11 Jan 2022 17:39:34 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=MAHBGzQ00LofLGXOr1JroxTPrVZql0vFC6/vImBDpksY9ITPq5kM2J4U6F4qmHPpfKNDrtYlnKZIJpkZliJP925IeloDLzxPT8CFtH4tJhtu2UhJ3+hD5IcKLRhYq2vFvRlT+/gJVZWwsT9HWNaXRkZha9UJUmVYZEhIUnEAbA/d; - Expires=Tue, 11 Jan 2022 17:39:34 GMT; Path=/ - - AWSALBTGCORS=MAHBGzQ00LofLGXOr1JroxTPrVZql0vFC6/vImBDpksY9ITPq5kM2J4U6F4qmHPpfKNDrtYlnKZIJpkZliJP925IeloDLzxPT8CFtH4tJhtu2UhJ3+hD5IcKLRhYq2vFvRlT+/gJVZWwsT9HWNaXRkZha9UJUmVYZEhIUnEAbA/d; - Expires=Tue, 11 Jan 2022 17:39:34 GMT; Path=/; SameSite=None; Secure - - csrftoken=ka8LQXVxCjMAlHpfuSpTLVaxLS5hYyiBFZDwTc9ksvYO2eYWlkXxMf6hpXyeL82V; - expires=Tue, 03 Jan 2023 17:39:34 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=8yex2gynnfdbitj02t4bwyrp8mln7muj; expires=Tue, 18 Jan 2022 17:39:34 + - AWSALB=gjonORJem4Zyi8lJzFrI77YPhKQttI6SQPX+j2LD5iW794KQXSxT0MHrS94EoO7ALCFjcZFWnk84It2e8nzoGrgJaXruZFeiW1uNfrPYgR/SHHLQIknSlQj4G9NE; + Expires=Fri, 14 Oct 2022 15:32:21 GMT; Path=/ + - AWSALBCORS=gjonORJem4Zyi8lJzFrI77YPhKQttI6SQPX+j2LD5iW794KQXSxT0MHrS94EoO7ALCFjcZFWnk84It2e8nzoGrgJaXruZFeiW1uNfrPYgR/SHHLQIknSlQj4G9NE; + Expires=Fri, 14 Oct 2022 15:32:21 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=MMZIidXkY9HE4s9UA2ndwGyNFiLibfIRtvsrSayTV9jX61PZnNVmjTTKuDPQYVMIK4zexltX97zslBAiOFM49KPab7nWCpOXIQxRWN8UNp3AJMg7nhKhMgz5G5D/isbR3xD9+bvnwNghEVzh4FEwVr3VUcM2Eq3TI0yPfy08Xk1g; + Expires=Fri, 14 Oct 2022 15:32:21 GMT; Path=/ + - AWSALBTGCORS=MMZIidXkY9HE4s9UA2ndwGyNFiLibfIRtvsrSayTV9jX61PZnNVmjTTKuDPQYVMIK4zexltX97zslBAiOFM49KPab7nWCpOXIQxRWN8UNp3AJMg7nhKhMgz5G5D/isbR3xD9+bvnwNghEVzh4FEwVr3VUcM2Eq3TI0yPfy08Xk1g; + Expires=Fri, 14 Oct 2022 15:32:21 GMT; Path=/; SameSite=None; Secure + - csrftoken=gLq0u60YO6iMgv9hcb7Yn4WwXN8pkwGbxbO8wZwPQOWofgIbF1jxxatTPGKmFfAl; + expires=Fri, 06 Oct 2023 15:32:23 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=6dxqq9dqoklr92o9eukseyzjqrzobi44; expires=Fri, 21 Oct 2022 15:32:23 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -837,14 +814,14 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":3,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/templates/5cb691f6-230e-4643-9612-7630d34deac4/","id":"5cb691f6-230e-4643-9612-7630d34deac4","name":"tone","description":"","evaluated":false,"body":"tmpl1 - {{one}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/b8b27d99-bacb-499e-bbb9-6d6cf1ea0cda/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:39:30.310220Z","modified_at":"2022-01-04T17:39:30.310220Z","parameters":["https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/b8b27d99-bacb-499e-bbb9-6d6cf1ea0cda/"],"references":[],"referenced_by":[]},{"url":"https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/templates/c0d325f6-c783-4d6d-9711-1ffc376ee429/","id":"c0d325f6-c783-4d6d-9711-1ffc376ee429","name":"tthree","description":"","evaluated":false,"body":"tmpl3 - {{three}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/319bc991-d982-42fe-8938-2ac6416e87f3/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":true,"created_at":"2022-01-04T17:39:34.101827Z","modified_at":"2022-01-04T17:39:34.101827Z","parameters":["https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/319bc991-d982-42fe-8938-2ac6416e87f3/"],"references":[],"referenced_by":[]},{"url":"https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/templates/daabfb58-421d-4c78-ba3b-0ca3eb2fca03/","id":"daabfb58-421d-4c78-ba3b-0ca3eb2fca03","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 - {{two}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/44f6c043-cc8b-412f-bffd-625d8c1128e1/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:39:30.902528Z","modified_at":"2022-01-04T17:39:30.902528Z","parameters":["https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/44f6c043-cc8b-412f-bffd-625d8c1128e1/"],"references":[],"referenced_by":[]}]}' - recorded_at: Tue, 04 Jan 2022 17:39:34 GMT + string: '{"count":3,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/templates/bd765e5e-4996-495e-bb03-8762bbfa50e8/","id":"bd765e5e-4996-495e-bb03-8762bbfa50e8","name":"tone","description":"","evaluated":false,"body":"tmpl1 + {{one}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/e0411d7b-f673-4baf-b7dc-a9ea3a6dbf0e/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:32:13.060404Z","modified_at":"2022-10-07T15:32:13.060404Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/e0411d7b-f673-4baf-b7dc-a9ea3a6dbf0e/"],"references":[],"referenced_by":[]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/templates/d45ef08e-ae21-4264-b4aa-c611168c8903/","id":"d45ef08e-ae21-4264-b4aa-c611168c8903","name":"tthree","description":"","evaluated":false,"body":"tmpl3 + {{three}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/ad82a5ad-0a1a-40c8-9018-70182fc44c44/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:32:21.750559Z","modified_at":"2022-10-07T15:32:21.750559Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/ad82a5ad-0a1a-40c8-9018-70182fc44c44/"],"references":[],"referenced_by":[]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/templates/3ca03775-e384-4e89-964a-cc08e1c114b0/","id":"3ca03775-e384-4e89-964a-cc08e1c114b0","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 + {{two}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/d0c5d608-3129-4fb1-81ea-83c10d58221c/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:32:14.657501Z","modified_at":"2022-10-07T15:32:14.657501Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/d0c5d608-3129-4fb1-81ea-83c10d58221c/"],"references":[],"referenced_by":[]}]}' + recorded_at: Fri, 07 Oct 2022 15:32:23 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/templates/c0d325f6-c783-4d6d-9711-1ffc376ee429/?environment=e8bc190d-0354-4e66-91c9-64501e501ec5 + uri: https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/templates/d45ef08e-ae21-4264-b4aa-c611168c8903/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76 body: encoding: US-ASCII string: '' @@ -852,7 +829,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -865,25 +842,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:39:35 GMT + - Fri, 07 Oct 2022 15:32:25 GMT Content-Type: - application/json Content-Length: - - '777' + - '826' Connection: - keep-alive Set-Cookie: - - AWSALB=1lZ9egMwsQPltUVBXoqzi8eBPl1gG7Dud5jzetlR6BDHpttAIe6A3kZbBzXmDpy6/O5rr/RnwsFX7h2NDshcT2Ct9QICce9dVwjj6nbDifWFGZJFqIUKHuBNA2Ge; - Expires=Tue, 11 Jan 2022 17:39:34 GMT; Path=/ - - AWSALBCORS=1lZ9egMwsQPltUVBXoqzi8eBPl1gG7Dud5jzetlR6BDHpttAIe6A3kZbBzXmDpy6/O5rr/RnwsFX7h2NDshcT2Ct9QICce9dVwjj6nbDifWFGZJFqIUKHuBNA2Ge; - Expires=Tue, 11 Jan 2022 17:39:34 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=tY0twDNsH0RTXthrAbirxDSn6uJhU89np2zb3o0fQI9x00xetqIAyTPKe7UkXTcYK7lL4bF9cRH+NGnJIMvpT7/l5R3LqN3nVo3bqX0aD7W9Eqx0FVWh+fYaCr9JN+v1KyLSF4deNzNr4uOLPuQW0i5xNniAU7fcPDicWI9l/6SP; - Expires=Tue, 11 Jan 2022 17:39:34 GMT; Path=/ - - AWSALBTGCORS=tY0twDNsH0RTXthrAbirxDSn6uJhU89np2zb3o0fQI9x00xetqIAyTPKe7UkXTcYK7lL4bF9cRH+NGnJIMvpT7/l5R3LqN3nVo3bqX0aD7W9Eqx0FVWh+fYaCr9JN+v1KyLSF4deNzNr4uOLPuQW0i5xNniAU7fcPDicWI9l/6SP; - Expires=Tue, 11 Jan 2022 17:39:34 GMT; Path=/; SameSite=None; Secure - - csrftoken=91UpUF3UQvhNpiUotyL2M61a3uGdWo2gXNi3sn46lHIgAIfNJ8NtJRj7MNxwnCK5; - expires=Tue, 03 Jan 2023 17:39:35 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=78oz9zh6xkw6k1tk61p5ocv1suhowv0s; expires=Tue, 18 Jan 2022 17:39:35 + - AWSALB=PSkp2kUsrxulELBJnU0k9HyDMleWaK1bvlGi61/iXXcQf13R3n8+F42LhIX5EMk9hSgxrtxcL9x9Jt+mUy+umbETkeOkNplqSYOF6hafcMtwMmlgyF55UPeVubCB; + Expires=Fri, 14 Oct 2022 15:32:23 GMT; Path=/ + - AWSALBCORS=PSkp2kUsrxulELBJnU0k9HyDMleWaK1bvlGi61/iXXcQf13R3n8+F42LhIX5EMk9hSgxrtxcL9x9Jt+mUy+umbETkeOkNplqSYOF6hafcMtwMmlgyF55UPeVubCB; + Expires=Fri, 14 Oct 2022 15:32:23 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=7GqiURs4M9QVb/BliQsG4rOHErqaCaOpvM8nfmAsuh3Br8yux82UqwiiCVscwi74ybEQKtkMCBLWeCDTUUMWxLEVezuH70CWzBUXTa2/5bRZy2lMplxW5oYmEw6z/p6kcWdwDcuZ/ykcTFEKwNpZQm1a5S7xjLkrPlnJbxUkWyjM; + Expires=Fri, 14 Oct 2022 15:32:23 GMT; Path=/ + - AWSALBTGCORS=7GqiURs4M9QVb/BliQsG4rOHErqaCaOpvM8nfmAsuh3Br8yux82UqwiiCVscwi74ybEQKtkMCBLWeCDTUUMWxLEVezuH70CWzBUXTa2/5bRZy2lMplxW5oYmEw6z/p6kcWdwDcuZ/ykcTFEKwNpZQm1a5S7xjLkrPlnJbxUkWyjM; + Expires=Fri, 14 Oct 2022 15:32:23 GMT; Path=/; SameSite=None; Secure + - csrftoken=GkSKFXQ8RVxrsL8CiTOdF2NEUknzResVPLYYcUopUVIn6tnBonLrPzBQYpi6f4OG; + expires=Fri, 06 Oct 2023 15:32:25 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ov8oj4q4mxhobz1lmq4lh5xmqhd7fmc2; expires=Fri, 21 Oct 2022 15:32:25 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -901,7 +878,7 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/templates/c0d325f6-c783-4d6d-9711-1ffc376ee429/","id":"c0d325f6-c783-4d6d-9711-1ffc376ee429","name":"tthree","description":"","evaluated":false,"body":"tmpl3 - defaultthree","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/319bc991-d982-42fe-8938-2ac6416e87f3/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":true,"created_at":"2022-01-04T17:39:34.101827Z","modified_at":"2022-01-04T17:39:34.101827Z","parameters":["https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/parameters/319bc991-d982-42fe-8938-2ac6416e87f3/"],"references":[],"referenced_by":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:35 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/templates/d45ef08e-ae21-4264-b4aa-c611168c8903/","id":"d45ef08e-ae21-4264-b4aa-c611168c8903","name":"tthree","description":"","evaluated":false,"body":"tmpl3 + defaultthree","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/ad82a5ad-0a1a-40c8-9018-70182fc44c44/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":true,"created_at":"2022-10-07T15:32:21.750559Z","modified_at":"2022-10-07T15:32:21.750559Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/2a8acf1a-5c07-4c5f-bb19-1eedc48b26e6/parameters/ad82a5ad-0a1a-40c8-9018-70182fc44c44/"],"references":[],"referenced_by":[]}' + recorded_at: Fri, 07 Oct 2022 15:32:25 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_templates/_template_id/gets_id.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_templates/_template_id/gets_id.yml index b0be018..62c7b1d 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_templates/_template_id/gets_id.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_templates/_template_id/gets_id.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -10,7 +10,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -23,25 +23,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:39:06 GMT + - Fri, 07 Oct 2022 15:27:56 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=wy2ygm0TK7EfHg3jBU3XNp1gUujITFR+RsUoxPZlcO+mHWz9pLgDZy5IRMzp4C1dcUVoZzVgYSVrXz6RO4jtL1iETt97dc2KEahhLu8EPpDyFTUbwiFOKhPi5iRu; - Expires=Tue, 11 Jan 2022 17:39:05 GMT; Path=/ - - AWSALBCORS=wy2ygm0TK7EfHg3jBU3XNp1gUujITFR+RsUoxPZlcO+mHWz9pLgDZy5IRMzp4C1dcUVoZzVgYSVrXz6RO4jtL1iETt97dc2KEahhLu8EPpDyFTUbwiFOKhPi5iRu; - Expires=Tue, 11 Jan 2022 17:39:05 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=CSS6xFYX65WNFU2822Cm+j6jh0DTeYTrBsLbjbK/1e8fF/5gDHnh/YD+xHzKPx8vIzjOyz5TYH6AM0+Fq7mrna5IYr6/7IzdMO1hNB7j1rFDFYBxac9La2AfS1VYgvYDC3gsHUwcb175mZkoa1og9L4ihLZhgF9jhxeJaQS3Hx9y; - Expires=Tue, 11 Jan 2022 17:39:05 GMT; Path=/ - - AWSALBTGCORS=CSS6xFYX65WNFU2822Cm+j6jh0DTeYTrBsLbjbK/1e8fF/5gDHnh/YD+xHzKPx8vIzjOyz5TYH6AM0+Fq7mrna5IYr6/7IzdMO1hNB7j1rFDFYBxac9La2AfS1VYgvYDC3gsHUwcb175mZkoa1og9L4ihLZhgF9jhxeJaQS3Hx9y; - Expires=Tue, 11 Jan 2022 17:39:05 GMT; Path=/; SameSite=None; Secure - - csrftoken=LAN55dIFQBHd418sOaapAoJefP1tK0cym2Io87zC1gRDuPM9PaxU5GpFn1nd8S3L; - expires=Tue, 03 Jan 2023 17:39:06 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=6lvp922fa7mdn7p6auhcay73df3wohe1; expires=Tue, 18 Jan 2022 17:39:06 + - AWSALB=iUVJruNq4JzLiBqrzsMvCe9+UCS//wODBG+ZCRkWLhxq1zUx4A1s++bDTdiafdK4HrUut1j47EHhZFhN4r5VmAUScZ0PRjcUFPJdBLR01ERw3Rp4PQF8/k1902ht; + Expires=Fri, 14 Oct 2022 15:27:55 GMT; Path=/ + - AWSALBCORS=iUVJruNq4JzLiBqrzsMvCe9+UCS//wODBG+ZCRkWLhxq1zUx4A1s++bDTdiafdK4HrUut1j47EHhZFhN4r5VmAUScZ0PRjcUFPJdBLR01ERw3Rp4PQF8/k1902ht; + Expires=Fri, 14 Oct 2022 15:27:55 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=aXtFFlY6EijrXyKFI2pmekYs1uXf8k25o3RPLDDqF2UX77q+2ZKzaG9R4cPP/TEUnlqd55UC1jXzT24/LgVtwfjrMFHuYy5U3BKVZy+TUtUvQ4Sc5jGIjrSpEIHCItoa8hNYeTI7r6ZDeSlkKaWntJqnwBDzxRQ7TSJmhMaqsJ+d; + Expires=Fri, 14 Oct 2022 15:27:55 GMT; Path=/ + - AWSALBTGCORS=aXtFFlY6EijrXyKFI2pmekYs1uXf8k25o3RPLDDqF2UX77q+2ZKzaG9R4cPP/TEUnlqd55UC1jXzT24/LgVtwfjrMFHuYy5U3BKVZy+TUtUvQ4Sc5jGIjrSpEIHCItoa8hNYeTI7r6ZDeSlkKaWntJqnwBDzxRQ7TSJmhMaqsJ+d; + Expires=Fri, 14 Oct 2022 15:27:55 GMT; Path=/; SameSite=None; Secure + - csrftoken=kDIdBmcj3p8jNeSnBdRKFybaGJNfUB6hdj6LQK4Ip8VZjZLpdRrobKJ7FE1AGC3p; + expires=Fri, 06 Oct 2023 15:27:56 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=6mbrgxb6rmaibbfbj6kk49aisrovd1dw; expires=Fri, 21 Oct 2022 15:27:56 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -59,23 +59,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/","id":"89a4202e-3507-4c4c-8e65-eb460bcaa381","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:39:00.998431Z","modified_at":"2022-01-04T17:39:04.575253Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:39:06 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/","id":"b9310e1d-71ee-4a57-8e23-6ec7dd11a635","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:27:44.354379Z","modified_at":"2022-10-07T15:27:44.354379Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:27:56 GMT - request: method: delete - uri: https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/ body: encoding: US-ASCII string: '' @@ -83,7 +72,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Authorization: - Api-Key Accept-Encoding: @@ -96,23 +85,23 @@ http_interactions: message: No Content headers: Date: - - Tue, 04 Jan 2022 17:39:06 GMT + - Fri, 07 Oct 2022 15:27:58 GMT Content-Length: - '0' Connection: - keep-alive Set-Cookie: - - AWSALB=3XfNOAApS1HbUJCiny3fUuuWFpE/mP5T2pQDB0k8Om//ttBAcuRmn+BdJ8OnzniawvE2z7j7JiwoUdPgvyPfz6YoNTZSp0mXEjkcDSEhdBAvy7XFnlCYISbiv49O; - Expires=Tue, 11 Jan 2022 17:39:06 GMT; Path=/ - - AWSALBCORS=3XfNOAApS1HbUJCiny3fUuuWFpE/mP5T2pQDB0k8Om//ttBAcuRmn+BdJ8OnzniawvE2z7j7JiwoUdPgvyPfz6YoNTZSp0mXEjkcDSEhdBAvy7XFnlCYISbiv49O; - Expires=Tue, 11 Jan 2022 17:39:06 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=DLDSAwON4O+OoDbwpGB34JeCnEwyFG5h5YQmzM+EwlVqwgWaff5g3CrHeoTrwO131v/5tOyrLxcoSHLq+biAIQRs3IEEnaAdpSjb5Wr/hRa+5GZxuJCkp8W4nRoBU2NNOEwkcBTn27LMO7XQCWr7kUshfnZ5CnXbUL+XGEZTTQ/4; - Expires=Tue, 11 Jan 2022 17:39:06 GMT; Path=/ - - AWSALBTGCORS=DLDSAwON4O+OoDbwpGB34JeCnEwyFG5h5YQmzM+EwlVqwgWaff5g3CrHeoTrwO131v/5tOyrLxcoSHLq+biAIQRs3IEEnaAdpSjb5Wr/hRa+5GZxuJCkp8W4nRoBU2NNOEwkcBTn27LMO7XQCWr7kUshfnZ5CnXbUL+XGEZTTQ/4; - Expires=Tue, 11 Jan 2022 17:39:06 GMT; Path=/; SameSite=None; Secure - - csrftoken=GTyeyHeOvjKYMRmCGvaOHX9Av2qYOxHJWEINZx5wOqFnPFdvYyVOv6GkRy2sZYhG; - expires=Tue, 03 Jan 2023 17:39:06 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=otgqgw1o2a46mpkvwdugobdip7a10hve; expires=Tue, 18 Jan 2022 17:39:06 + - AWSALB=KocyDSNEepiTPR9I5DZT2P8I6lMQFVQl7ZlfFBdWMOSLU9fzHdProD/mMUPIbxiBVFYoLohMswcJwpSh05oWgOAW6Uvzy9slI+Nbam0O/oQJxW02er+2aImQAFtl; + Expires=Fri, 14 Oct 2022 15:27:56 GMT; Path=/ + - AWSALBCORS=KocyDSNEepiTPR9I5DZT2P8I6lMQFVQl7ZlfFBdWMOSLU9fzHdProD/mMUPIbxiBVFYoLohMswcJwpSh05oWgOAW6Uvzy9slI+Nbam0O/oQJxW02er+2aImQAFtl; + Expires=Fri, 14 Oct 2022 15:27:56 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=SybzG/EdpPmpkXcrkw+GbyXkeQcd+/7PAjLRuSvW+hoWFf2NxPvT6W05CnMefWFpXuAd0hKzr6iqhIPNH7IOsKjDv92fgoHBec+Byzz8KFvj8ba8b64rqwyrlRJ6vT+b+YNb/xX54k1YLu2b+9+thEfHhMGkI9UTHY/YtG83an6c; + Expires=Fri, 14 Oct 2022 15:27:56 GMT; Path=/ + - AWSALBTGCORS=SybzG/EdpPmpkXcrkw+GbyXkeQcd+/7PAjLRuSvW+hoWFf2NxPvT6W05CnMefWFpXuAd0hKzr6iqhIPNH7IOsKjDv92fgoHBec+Byzz8KFvj8ba8b64rqwyrlRJ6vT+b+YNb/xX54k1YLu2b+9+thEfHhMGkI9UTHY/YtG83an6c; + Expires=Fri, 14 Oct 2022 15:27:56 GMT; Path=/; SameSite=None; Secure + - csrftoken=PbQxMKrPHYOmf6fkmgTJkqCrwDBO09FLXZ7n8OFN2eURAeSW8a5ThSrVxQlJ9DS2; + expires=Fri, 06 Oct 2023 15:27:58 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=nv87a438etwnnndopp9kh54evzw1u21l; expires=Fri, 21 Oct 2022 15:27:58 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -131,10 +120,10 @@ http_interactions: body: encoding: UTF-8 string: '' - recorded_at: Tue, 04 Jan 2022 17:39:06 GMT + recorded_at: Fri, 07 Oct 2022 15:27:58 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: UTF-8 string: '{"name":"TestProject"}' @@ -142,7 +131,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -155,30 +144,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:07 GMT + - Fri, 07 Oct 2022 15:27:59 GMT Content-Type: - application/json Content-Length: - - '304' + - '365' Connection: - keep-alive Set-Cookie: - - AWSALB=1CrzPOuQ3fGMuhu2wQhnfXGWExxwIB8kxGrsQDXJLJx0MEvzRydQuEl75L8C4TSTg85CaL0FcS8tu9WKsvMpFcy4dkugXy+BU4KNA4EnMpSQyxJXjbl2byuw9r9M; - Expires=Tue, 11 Jan 2022 17:39:06 GMT; Path=/ - - AWSALBCORS=1CrzPOuQ3fGMuhu2wQhnfXGWExxwIB8kxGrsQDXJLJx0MEvzRydQuEl75L8C4TSTg85CaL0FcS8tu9WKsvMpFcy4dkugXy+BU4KNA4EnMpSQyxJXjbl2byuw9r9M; - Expires=Tue, 11 Jan 2022 17:39:06 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=0ULeZbAsRg9W9WDVc/eZH6O1NmfRPeKsGC9vobLZmiqGE8yMUbOhck5EO2mp6dWZh9TDCUaFbwvQaEe/H8gjLEIS/ITnOHDMET0X5GHJIQhY0kL7CAymxD58aT1WacuKdkumWCzHQl0ffsCkpVdGfTx5FFhOs0yIknteUPYacv8Y; - Expires=Tue, 11 Jan 2022 17:39:06 GMT; Path=/ - - AWSALBTGCORS=0ULeZbAsRg9W9WDVc/eZH6O1NmfRPeKsGC9vobLZmiqGE8yMUbOhck5EO2mp6dWZh9TDCUaFbwvQaEe/H8gjLEIS/ITnOHDMET0X5GHJIQhY0kL7CAymxD58aT1WacuKdkumWCzHQl0ffsCkpVdGfTx5FFhOs0yIknteUPYacv8Y; - Expires=Tue, 11 Jan 2022 17:39:06 GMT; Path=/; SameSite=None; Secure - - csrftoken=DzUsRteciD02C3H5gbuN2uKrv66mtHYEjLzIKTKFmHNx2Lea1AxssjUAc4v4D28P; - expires=Tue, 03 Jan 2023 17:39:07 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=460zcutbqyrw3u4bmu3c1njk8ggz8a6r; expires=Tue, 18 Jan 2022 17:39:07 + - AWSALB=TzuCUem2CCjF0AMjV8yTWLy4SYAgrYTzdDOGZVNcJykqzWMfXCbPn3Z3Eb/7iiQsz5mXskjrpIHAqmGoppO6DaFct5Z3RPfqs+G/jwOr32ZAcbbZTjUd/4gErDD9; + Expires=Fri, 14 Oct 2022 15:27:58 GMT; Path=/ + - AWSALBCORS=TzuCUem2CCjF0AMjV8yTWLy4SYAgrYTzdDOGZVNcJykqzWMfXCbPn3Z3Eb/7iiQsz5mXskjrpIHAqmGoppO6DaFct5Z3RPfqs+G/jwOr32ZAcbbZTjUd/4gErDD9; + Expires=Fri, 14 Oct 2022 15:27:58 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=DLvrdgQRmhuP7SErR106TzOxSeJfeNyscY2Bs5V06GssBsUy7UqIgpqQ18MnR8neTRc8okLZPKg9coqKR9QZhh6lEAMx3A09Z0+ZrAoxIqlDhfMWJqhtppnnp0Ap1cPf6SEeKLWZegVl0U35SJafNmwhvETg3k6M/PuFwoB0l0cy; + Expires=Fri, 14 Oct 2022 15:27:58 GMT; Path=/ + - AWSALBTGCORS=DLvrdgQRmhuP7SErR106TzOxSeJfeNyscY2Bs5V06GssBsUy7UqIgpqQ18MnR8neTRc8okLZPKg9coqKR9QZhh6lEAMx3A09Z0+ZrAoxIqlDhfMWJqhtppnnp0Ap1cPf6SEeKLWZegVl0U35SJafNmwhvETg3k6M/PuFwoB0l0cy; + Expires=Fri, 14 Oct 2022 15:27:58 GMT; Path=/; SameSite=None; Secure + - csrftoken=AsxYmAHF5SFAcZao4Usvqm6QpIi8y6BDhkC68mCrWsuMxM2ArLaf5kAoE9vBgSRG; + expires=Fri, 06 Oct 2023 15:27:59 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=r4tn5qbb4cuver1y2t9cz16v7tvrdapt; expires=Fri, 21 Oct 2022 15:27:59 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/ + - https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/ Vary: - Accept, Cookie, Origin Allow: @@ -193,11 +182,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/","id":"33c76626-72c9-49cb-9c92-af47781ed329","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:39:07.233411Z","modified_at":"2022-01-04T17:39:07.233411Z"}' - recorded_at: Tue, 04 Jan 2022 17:39:07 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/","id":"3653a3b6-76c1-4066-8596-c08c9b6d7458","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:27:59.765101Z","modified_at":"2022-10-07T15:27:59.765101Z"}' + recorded_at: Fri, 07 Oct 2022 15:27:59 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -205,7 +194,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -218,25 +207,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:39:07 GMT + - Fri, 07 Oct 2022 15:28:01 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=VNMFwK/Q56iaziY0zI4RXt1PoN7b5YYgTDQetIbcuqcOIi31/qtTILccf8CRo3P0naoCwxUG7ouBwpfWvGZ74Aoy5sy9YDF2zPbWEY0GC2JhsLAerGEJdfAzBu7c; - Expires=Tue, 11 Jan 2022 17:39:07 GMT; Path=/ - - AWSALBCORS=VNMFwK/Q56iaziY0zI4RXt1PoN7b5YYgTDQetIbcuqcOIi31/qtTILccf8CRo3P0naoCwxUG7ouBwpfWvGZ74Aoy5sy9YDF2zPbWEY0GC2JhsLAerGEJdfAzBu7c; - Expires=Tue, 11 Jan 2022 17:39:07 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=Dp3QnOZDOycxl0fS0IHM0b3IkX5uq2/p+eqRbuboemIfkeNidM015h2FNLT5U2QacugX+iy+cUBo8pJK/3aLh9rq4qSRqLSW0K5Pn0NdYbaa49aKNPYsxG2na7gufMixjsnfPFNVl9tZBYgXZBQO1uBsU9bpx5KjMtvLrffIgIKi; - Expires=Tue, 11 Jan 2022 17:39:07 GMT; Path=/ - - AWSALBTGCORS=Dp3QnOZDOycxl0fS0IHM0b3IkX5uq2/p+eqRbuboemIfkeNidM015h2FNLT5U2QacugX+iy+cUBo8pJK/3aLh9rq4qSRqLSW0K5Pn0NdYbaa49aKNPYsxG2na7gufMixjsnfPFNVl9tZBYgXZBQO1uBsU9bpx5KjMtvLrffIgIKi; - Expires=Tue, 11 Jan 2022 17:39:07 GMT; Path=/; SameSite=None; Secure - - csrftoken=IXwzKD13Sf9ZYBCyTl61SJy0qQkL6oGWZ8QS2SgIpnGO8Xh8041XTRtGRywbfnXv; - expires=Tue, 03 Jan 2023 17:39:07 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=1ibx7tuuriynxsx3wmc393p1wgawhksi; expires=Tue, 18 Jan 2022 17:39:07 + - AWSALB=9WAMFaIghYxEOJzJuLb5uYvaZSZHZbtbldG5n0lGZaByDX+8/6+L99fAUwrCfrexcjNm+sqhWm4YP0hFCyYVv22XRA/HB2OnrqIdwP19dvah6+9vOqKAcwng7mS3; + Expires=Fri, 14 Oct 2022 15:27:59 GMT; Path=/ + - AWSALBCORS=9WAMFaIghYxEOJzJuLb5uYvaZSZHZbtbldG5n0lGZaByDX+8/6+L99fAUwrCfrexcjNm+sqhWm4YP0hFCyYVv22XRA/HB2OnrqIdwP19dvah6+9vOqKAcwng7mS3; + Expires=Fri, 14 Oct 2022 15:27:59 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=hAIFbsMyhAs4pdSUOGvnCwoOUcGXZY1UjGNqhbbIJUIneqe+XSOC+J+HbQbF9J8zvqZrUeH+v5tDW3cOebkgtmVef/amfZOQMxAxt0uLHHS1I6iJxjrmgungFrsOvac1TvBgz70YmjC5YSro5x7ObYc16NysT+Lfyfr4eIaaPM9w; + Expires=Fri, 14 Oct 2022 15:27:59 GMT; Path=/ + - AWSALBTGCORS=hAIFbsMyhAs4pdSUOGvnCwoOUcGXZY1UjGNqhbbIJUIneqe+XSOC+J+HbQbF9J8zvqZrUeH+v5tDW3cOebkgtmVef/amfZOQMxAxt0uLHHS1I6iJxjrmgungFrsOvac1TvBgz70YmjC5YSro5x7ObYc16NysT+Lfyfr4eIaaPM9w; + Expires=Fri, 14 Oct 2022 15:27:59 GMT; Path=/; SameSite=None; Secure + - csrftoken=TrbMgyLOluunqA21fPgyj2CkES2KOWPHv3v9FlUMLlr9V96Jqsfnacq2MJvRCeRb; + expires=Fri, 06 Oct 2023 15:28:01 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=salwl917b82zxglr7gpyu5nz3qsvi8ga; expires=Fri, 21 Oct 2022 15:28:01 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -254,23 +243,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/","id":"33c76626-72c9-49cb-9c92-af47781ed329","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:39:07.233411Z","modified_at":"2022-01-04T17:39:07.233411Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:39:07 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/","id":"3653a3b6-76c1-4066-8596-c08c9b6d7458","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:27:59.765101Z","modified_at":"2022-10-07T15:27:59.765101Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:28:01 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/parameters/ body: encoding: UTF-8 string: '{"name":"one","type":"string"}' @@ -278,7 +256,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -291,30 +269,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:08 GMT + - Fri, 07 Oct 2022 15:28:03 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=t3XV+cwyAIVogMiSSZk3Uq5wbLobkztdV6ixME9UafTjUwz/SsUr1DZQX7FOGlStfDI0TeJZZ/3MxtBnMnT3ftLXmQLo6sWEehMsjErofqzw7AllRFFyssZUFTgt; - Expires=Tue, 11 Jan 2022 17:39:08 GMT; Path=/ - - AWSALBCORS=t3XV+cwyAIVogMiSSZk3Uq5wbLobkztdV6ixME9UafTjUwz/SsUr1DZQX7FOGlStfDI0TeJZZ/3MxtBnMnT3ftLXmQLo6sWEehMsjErofqzw7AllRFFyssZUFTgt; - Expires=Tue, 11 Jan 2022 17:39:08 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=lfHYGFVoTLVvHYjjlEyDQbzJrdzcc5lgIhJPCaCSSfv2XvDSxoFWjvxQKUNTRbwIlviW4NLMEv/7N8cljJxJwtn1nb+8KgJ1b5vrdaNzKhlL0q5o7ixZw2whxJ9ue0SGz+vssk6K0hELjAsMr4bCWDwKBsiDLlcyqDW2h/xOI7pL; - Expires=Tue, 11 Jan 2022 17:39:08 GMT; Path=/ - - AWSALBTGCORS=lfHYGFVoTLVvHYjjlEyDQbzJrdzcc5lgIhJPCaCSSfv2XvDSxoFWjvxQKUNTRbwIlviW4NLMEv/7N8cljJxJwtn1nb+8KgJ1b5vrdaNzKhlL0q5o7ixZw2whxJ9ue0SGz+vssk6K0hELjAsMr4bCWDwKBsiDLlcyqDW2h/xOI7pL; - Expires=Tue, 11 Jan 2022 17:39:08 GMT; Path=/; SameSite=None; Secure - - csrftoken=xaqFVLBadWQ9owNFcA8w4GBn8jVUOCds7Ce0vqmkVTNRIEBtn5X3ahCjvXQFAe9c; - expires=Tue, 03 Jan 2023 17:39:08 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=82w64r6qk9vrllaxbqtxqkqg67gl7t3m; expires=Tue, 18 Jan 2022 17:39:08 + - AWSALB=Grmo94NHWk3cmLEWAJnnFhujVq8mfsWngjq1hSuaefH9WiPd6PjTYdccC2EBU0mYV2mqBFElcXMp/2VZXNjhYZNQ/8J3yd/XNg8ElOT9p4iKlBoI91LH+cC9UHfJ; + Expires=Fri, 14 Oct 2022 15:28:01 GMT; Path=/ + - AWSALBCORS=Grmo94NHWk3cmLEWAJnnFhujVq8mfsWngjq1hSuaefH9WiPd6PjTYdccC2EBU0mYV2mqBFElcXMp/2VZXNjhYZNQ/8J3yd/XNg8ElOT9p4iKlBoI91LH+cC9UHfJ; + Expires=Fri, 14 Oct 2022 15:28:01 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=pW6UQ2q1HLEbZdk9cqmVKoysFU2KlngzFEB3/oS+yz0dE3w3WNCPE+VlP/NpG87bQVV/DGhQqY8XX/JbKYzI9zNyqz1bcJmKny2N5t4AuQJBRm1qQfFOWxoLv6PdoSqowl1BpsZMgpiYoTf2yON2GlOloLdoINfVS4HzoRdSDb28; + Expires=Fri, 14 Oct 2022 15:28:01 GMT; Path=/ + - AWSALBTGCORS=pW6UQ2q1HLEbZdk9cqmVKoysFU2KlngzFEB3/oS+yz0dE3w3WNCPE+VlP/NpG87bQVV/DGhQqY8XX/JbKYzI9zNyqz1bcJmKny2N5t4AuQJBRm1qQfFOWxoLv6PdoSqowl1BpsZMgpiYoTf2yON2GlOloLdoINfVS4HzoRdSDb28; + Expires=Fri, 14 Oct 2022 15:28:01 GMT; Path=/; SameSite=None; Secure + - csrftoken=q488BZE3dfCle8ljwBbicdDZ59auTtpMUhusCMuiRAtbK6yOXJSJ5Wc24BueZ0Gu; + expires=Fri, 06 Oct 2023 15:28:03 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=brvo5m10dvn9rgk5o1fa6t7tdmtq2994; expires=Fri, 21 Oct 2022 15:28:03 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/parameters/72d2db04-0d26-4048-970e-83ea74e13e0b/ + - https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/parameters/cbd263ef-0a9b-4ae9-95d7-02f6b20bf8bc/ Vary: - Accept, Cookie, Origin Allow: @@ -329,11 +307,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/parameters/72d2db04-0d26-4048-970e-83ea74e13e0b/","id":"72d2db04-0d26-4048-970e-83ea74e13e0b","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T17:39:08.498490Z","modified_at":"2022-01-04T17:39:08.498490Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:08 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/parameters/cbd263ef-0a9b-4ae9-95d7-02f6b20bf8bc/","id":"cbd263ef-0a9b-4ae9-95d7-02f6b20bf8bc","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:28:03.013752Z","modified_at":"2022-10-07T15:28:03.013752Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:28:03 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/parameters/ body: encoding: UTF-8 string: '{"name":"two","type":"string"}' @@ -341,7 +319,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -354,30 +332,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:09 GMT + - Fri, 07 Oct 2022 15:28:05 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=WtAQAVXA6zIGHWyX6GnB3h/VdOk2SpCr0bgpPn3HKPt3etTxXum4bCyS0L7FEYU1ks9LlAW2cObWhMncSU+O/KxzkL3qMMfvMLe8sTCl9PBCXkkgTCrA6h9raJ49; - Expires=Tue, 11 Jan 2022 17:39:08 GMT; Path=/ - - AWSALBCORS=WtAQAVXA6zIGHWyX6GnB3h/VdOk2SpCr0bgpPn3HKPt3etTxXum4bCyS0L7FEYU1ks9LlAW2cObWhMncSU+O/KxzkL3qMMfvMLe8sTCl9PBCXkkgTCrA6h9raJ49; - Expires=Tue, 11 Jan 2022 17:39:08 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=WUphgy2wKy+WY00ge1Y61hu9WbGT6M7VE4yXvUga+6pUU7lxibnnXwsUvZmKsuoAgqD7yDTDLb15WxvmuWlP704Ys0PKq9B/5CtmBg7bbQhWeTeLQ41bDH/EQkCKludqfJozmLLvlSFVzmMz1HjhznZU0asfrUIgPVX/O89KOQF7; - Expires=Tue, 11 Jan 2022 17:39:08 GMT; Path=/ - - AWSALBTGCORS=WUphgy2wKy+WY00ge1Y61hu9WbGT6M7VE4yXvUga+6pUU7lxibnnXwsUvZmKsuoAgqD7yDTDLb15WxvmuWlP704Ys0PKq9B/5CtmBg7bbQhWeTeLQ41bDH/EQkCKludqfJozmLLvlSFVzmMz1HjhznZU0asfrUIgPVX/O89KOQF7; - Expires=Tue, 11 Jan 2022 17:39:08 GMT; Path=/; SameSite=None; Secure - - csrftoken=7VK4Mn1B3PVnxhCbLGHCa2lBZaYlKIoJQ0iSkuKyjbYK1HVEUOjttI0FmcjRrdvL; - expires=Tue, 03 Jan 2023 17:39:09 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=51b2dswalby6me2zh3nccwzqfz98u9jr; expires=Tue, 18 Jan 2022 17:39:09 + - AWSALB=KLqrP/X/kP/MRsSFUvsj+vd/K+o8J2wILMLqsX81Cfskh+Wrbpa4JTrs7tfDjoC+IFsfC3Iq0SAaUovRmBUU4bPV84uiixxzZuGhp3m3mSXbu5ImGQzEi9ctHYNi; + Expires=Fri, 14 Oct 2022 15:28:03 GMT; Path=/ + - AWSALBCORS=KLqrP/X/kP/MRsSFUvsj+vd/K+o8J2wILMLqsX81Cfskh+Wrbpa4JTrs7tfDjoC+IFsfC3Iq0SAaUovRmBUU4bPV84uiixxzZuGhp3m3mSXbu5ImGQzEi9ctHYNi; + Expires=Fri, 14 Oct 2022 15:28:03 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=xiKtyKlZJGOwaqowI2Qr4MOVS4SXFEKjbci1uOscGK9S9DeV+TEodZpJuA/AT+i1MIslpGnCGf9k4YEIWF/LC2aqmAMXKkYpj8qsenBWAaDsQ6bqTp7zCDcHG0HYYeycxF2+zZEQeAkKoKxTzXAD+HjB09rAozlOEZFN27mVL2sd; + Expires=Fri, 14 Oct 2022 15:28:03 GMT; Path=/ + - AWSALBTGCORS=xiKtyKlZJGOwaqowI2Qr4MOVS4SXFEKjbci1uOscGK9S9DeV+TEodZpJuA/AT+i1MIslpGnCGf9k4YEIWF/LC2aqmAMXKkYpj8qsenBWAaDsQ6bqTp7zCDcHG0HYYeycxF2+zZEQeAkKoKxTzXAD+HjB09rAozlOEZFN27mVL2sd; + Expires=Fri, 14 Oct 2022 15:28:03 GMT; Path=/; SameSite=None; Secure + - csrftoken=M8h5gMv5nMFfug0FYEpWHPSyE3NYbKYpuYdehY4XMs494dtozXM4scWALcuss5Am; + expires=Fri, 06 Oct 2023 15:28:05 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ijdb093faxhnlru5cnfbdt4esqk5004f; expires=Fri, 21 Oct 2022 15:28:05 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/parameters/92b00ad2-7559-4a3a-a5b7-abd2df34f29a/ + - https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/parameters/9d78cdef-c55d-45f0-bc6a-2b0a6e65e66f/ Vary: - Accept, Cookie, Origin Allow: @@ -392,11 +370,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/parameters/92b00ad2-7559-4a3a-a5b7-abd2df34f29a/","id":"92b00ad2-7559-4a3a-a5b7-abd2df34f29a","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T17:39:09.077824Z","modified_at":"2022-01-04T17:39:09.077824Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:09 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/parameters/9d78cdef-c55d-45f0-bc6a-2b0a6e65e66f/","id":"9d78cdef-c55d-45f0-bc6a-2b0a6e65e66f","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:28:05.100443Z","modified_at":"2022-10-07T15:28:05.100443Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:28:05 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/templates/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/templates/ body: encoding: UTF-8 string: '{"name":"tone","body":"tmpl1 {{one}}"}' @@ -404,7 +382,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -417,30 +395,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:09 GMT + - Fri, 07 Oct 2022 15:28:07 GMT Content-Type: - application/json Content-Length: - - '771' + - '820' Connection: - keep-alive Set-Cookie: - - AWSALB=3UzZLDLTMBhwASRUYvzy2Py+y1gIx2QZ9yXIGCQrhi0O2HzmFGHjOLMEl6sECHI8lnXAy+A+yL4XaMkAl3CmLLXKYFzowO4f4Fi/6mHVBF59XGthubFCZI+JyP3J; - Expires=Tue, 11 Jan 2022 17:39:09 GMT; Path=/ - - AWSALBCORS=3UzZLDLTMBhwASRUYvzy2Py+y1gIx2QZ9yXIGCQrhi0O2HzmFGHjOLMEl6sECHI8lnXAy+A+yL4XaMkAl3CmLLXKYFzowO4f4Fi/6mHVBF59XGthubFCZI+JyP3J; - Expires=Tue, 11 Jan 2022 17:39:09 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=ieJsx+tOU1y+AfIG9G5pa2JzUeDA4rbrXK5rBhPJ550Gr9loggjLNvtEKsK8jV9OXRobgXhDBJadnxMNcmTP51Jd6yCBAy2o0KGpXIkTKQ9OoLpoX3xkZrkdq07ZwTc/8lr45BANz5adn82URNbqhB0o1qvVG2HnbGhAF+g5K5qy; - Expires=Tue, 11 Jan 2022 17:39:09 GMT; Path=/ - - AWSALBTGCORS=ieJsx+tOU1y+AfIG9G5pa2JzUeDA4rbrXK5rBhPJ550Gr9loggjLNvtEKsK8jV9OXRobgXhDBJadnxMNcmTP51Jd6yCBAy2o0KGpXIkTKQ9OoLpoX3xkZrkdq07ZwTc/8lr45BANz5adn82URNbqhB0o1qvVG2HnbGhAF+g5K5qy; - Expires=Tue, 11 Jan 2022 17:39:09 GMT; Path=/; SameSite=None; Secure - - csrftoken=QmasRZIS8zNX7G3ENWp04uEYSmD8hHmUc788P8922DuZo76ZcT8ASv03ug1rajLo; - expires=Tue, 03 Jan 2023 17:39:09 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=spai7q1do1mf09qsnlxx2rl5fgon0x11; expires=Tue, 18 Jan 2022 17:39:09 + - AWSALB=VK8avTE2kqDeNWVUJEAtLrQFW6t3ewk1cEMRxI9UNv23KOAKOf956T4CZwsdSZTMu25PGLhWUf3G371bC/Te9B8BREeKal7NPGsNWZfFZ0GlJDnMh7mHkk7hk7oy; + Expires=Fri, 14 Oct 2022 15:28:05 GMT; Path=/ + - AWSALBCORS=VK8avTE2kqDeNWVUJEAtLrQFW6t3ewk1cEMRxI9UNv23KOAKOf956T4CZwsdSZTMu25PGLhWUf3G371bC/Te9B8BREeKal7NPGsNWZfFZ0GlJDnMh7mHkk7hk7oy; + Expires=Fri, 14 Oct 2022 15:28:05 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=gh/o0yqllgUPqiGkgYWOKy9AH2R29Uqu4zl0Zig6Sq5N09qFVd8lzhnown25M/n7G8v8zW58P5EKlncNtUPlrO9ugOi8yNqlml8f+v2TGcpyThXUqmv9Wqwi8MU3s3UuPA74PuVIqsRsQozY5idZcq7D/usJzrPAMuMSuJNPZY6N; + Expires=Fri, 14 Oct 2022 15:28:05 GMT; Path=/ + - AWSALBTGCORS=gh/o0yqllgUPqiGkgYWOKy9AH2R29Uqu4zl0Zig6Sq5N09qFVd8lzhnown25M/n7G8v8zW58P5EKlncNtUPlrO9ugOi8yNqlml8f+v2TGcpyThXUqmv9Wqwi8MU3s3UuPA74PuVIqsRsQozY5idZcq7D/usJzrPAMuMSuJNPZY6N; + Expires=Fri, 14 Oct 2022 15:28:05 GMT; Path=/; SameSite=None; Secure + - csrftoken=ZrcF0INBFbW3LQIuR8LWFauWcXbylcvLbuOpvkuiL9bFQCMCSrtbFuhm7Y3uUXL1; + expires=Fri, 06 Oct 2023 15:28:07 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=x0g18pf6vigs14l0aakp3e2ozuhzc6c8; expires=Fri, 21 Oct 2022 15:28:07 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/templates/c2e3b764-419e-4dcd-b367-f8c4ca14ee18/ + - https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/templates/066a8cc5-7532-418f-a785-a9a0de4e854f/ Vary: - Accept, Cookie, Origin Allow: @@ -455,12 +433,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/templates/c2e3b764-419e-4dcd-b367-f8c4ca14ee18/","id":"c2e3b764-419e-4dcd-b367-f8c4ca14ee18","name":"tone","description":"","evaluated":false,"body":"tmpl1 - {{one}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/parameters/72d2db04-0d26-4048-970e-83ea74e13e0b/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:39:09.741670Z","modified_at":"2022-01-04T17:39:09.741670Z","parameters":["https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/parameters/72d2db04-0d26-4048-970e-83ea74e13e0b/"],"references":[],"referenced_by":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:09 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/templates/066a8cc5-7532-418f-a785-a9a0de4e854f/","id":"066a8cc5-7532-418f-a785-a9a0de4e854f","name":"tone","description":"","evaluated":false,"body":"tmpl1 + {{one}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/parameters/cbd263ef-0a9b-4ae9-95d7-02f6b20bf8bc/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:28:06.976545Z","modified_at":"2022-10-07T15:28:06.976545Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/parameters/cbd263ef-0a9b-4ae9-95d7-02f6b20bf8bc/"],"references":[],"referenced_by":[]}' + recorded_at: Fri, 07 Oct 2022 15:28:07 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/templates/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/templates/ body: encoding: UTF-8 string: '{"name":"ttwo","body":"tmpl2 {{two}}"}' @@ -468,7 +446,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -481,30 +459,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:10 GMT + - Fri, 07 Oct 2022 15:28:08 GMT Content-Type: - application/json Content-Length: - - '771' + - '820' Connection: - keep-alive Set-Cookie: - - AWSALB=D+cB4RVcCG97iqKs5DG4ylf8125SUORqNRM94zCsZYtHR9rLVV/JCeASDRQbZh2qY4zkZEygTWXrT1GUECZO20mTPZe08V0MVLWC0kyj+kyhsHsa/ko6Ho19Q0I6; - Expires=Tue, 11 Jan 2022 17:39:09 GMT; Path=/ - - AWSALBCORS=D+cB4RVcCG97iqKs5DG4ylf8125SUORqNRM94zCsZYtHR9rLVV/JCeASDRQbZh2qY4zkZEygTWXrT1GUECZO20mTPZe08V0MVLWC0kyj+kyhsHsa/ko6Ho19Q0I6; - Expires=Tue, 11 Jan 2022 17:39:09 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=PnKQpQw/csUC0KlGDaKJMjBpGbjtN2MwDqB8MCsfv6fczE2K+kZCzICDWwIp3iVH+tnvYxnN2wgZWahzeFBKhAPd0keqGwRYKwjUs3kgED5bYKZojn2jVomo0KhYqrysva8J+oGInZdXBIj7Zkdvm8z3xNwEQCt3bgbYJ7lcI5bI; - Expires=Tue, 11 Jan 2022 17:39:09 GMT; Path=/ - - AWSALBTGCORS=PnKQpQw/csUC0KlGDaKJMjBpGbjtN2MwDqB8MCsfv6fczE2K+kZCzICDWwIp3iVH+tnvYxnN2wgZWahzeFBKhAPd0keqGwRYKwjUs3kgED5bYKZojn2jVomo0KhYqrysva8J+oGInZdXBIj7Zkdvm8z3xNwEQCt3bgbYJ7lcI5bI; - Expires=Tue, 11 Jan 2022 17:39:09 GMT; Path=/; SameSite=None; Secure - - csrftoken=AjGulbZywqrE6flryRqvyfTuMhoHKe0mcDJe13yYShMBAHaWlHBgVSltrOdPUtGn; - expires=Tue, 03 Jan 2023 17:39:10 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=f8on0497iyvm4ihvaclopmp37nlh1f68; expires=Tue, 18 Jan 2022 17:39:10 + - AWSALB=FGQRJn92HiY8l+Zl1MXWrCSfXrDZAU7zLOzYZh/PTllWATXuW4hXh/hr5xem2XtEf3pTq8ElIO8nomY9srrEY1CnuKg9XwA+dSwoDHDDLsK0lTRz88ofp+dN1GGW; + Expires=Fri, 14 Oct 2022 15:28:07 GMT; Path=/ + - AWSALBCORS=FGQRJn92HiY8l+Zl1MXWrCSfXrDZAU7zLOzYZh/PTllWATXuW4hXh/hr5xem2XtEf3pTq8ElIO8nomY9srrEY1CnuKg9XwA+dSwoDHDDLsK0lTRz88ofp+dN1GGW; + Expires=Fri, 14 Oct 2022 15:28:07 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=nvifFXU70At7GrwfNtcB71gx8YDnQ+VZENVv7vofoq4TkTvPo5QHEqQ6JFIBICfZNiJGTb3t3JOsBfx5LKHNyZthSWrkjWf6u75NyUepR6pkUK3a+q+UU+qfMfuODFShWaxGTSfLWmlAK5wLU6cGGlOjhDM2RWGuO6a+2P8172kn; + Expires=Fri, 14 Oct 2022 15:28:07 GMT; Path=/ + - AWSALBTGCORS=nvifFXU70At7GrwfNtcB71gx8YDnQ+VZENVv7vofoq4TkTvPo5QHEqQ6JFIBICfZNiJGTb3t3JOsBfx5LKHNyZthSWrkjWf6u75NyUepR6pkUK3a+q+UU+qfMfuODFShWaxGTSfLWmlAK5wLU6cGGlOjhDM2RWGuO6a+2P8172kn; + Expires=Fri, 14 Oct 2022 15:28:07 GMT; Path=/; SameSite=None; Secure + - csrftoken=0RNt7IcrRiCvwPUg3BXiyaNycTzRiktLYdVTHiN751TJ3RS3zyHqGUgRHGh1fwTN; + expires=Fri, 06 Oct 2023 15:28:08 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=w9tk1zwzs3ld0m40nc04xog16qoh83yq; expires=Fri, 21 Oct 2022 15:28:08 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/templates/b220fd7c-f1d2-4844-9bb3-d93a11a92afe/ + - https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/templates/b15212ab-fb6c-418e-b65e-3fe8848b655d/ Vary: - Accept, Cookie, Origin Allow: @@ -519,12 +497,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/templates/b220fd7c-f1d2-4844-9bb3-d93a11a92afe/","id":"b220fd7c-f1d2-4844-9bb3-d93a11a92afe","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 - {{two}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/parameters/92b00ad2-7559-4a3a-a5b7-abd2df34f29a/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:39:10.247905Z","modified_at":"2022-01-04T17:39:10.247905Z","parameters":["https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/parameters/92b00ad2-7559-4a3a-a5b7-abd2df34f29a/"],"references":[],"referenced_by":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:10 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/templates/b15212ab-fb6c-418e-b65e-3fe8848b655d/","id":"b15212ab-fb6c-418e-b65e-3fe8848b655d","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 + {{two}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/parameters/9d78cdef-c55d-45f0-bc6a-2b0a6e65e66f/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:28:08.589742Z","modified_at":"2022-10-07T15:28:08.589742Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/parameters/9d78cdef-c55d-45f0-bc6a-2b0a6e65e66f/"],"references":[],"referenced_by":[]}' + recorded_at: Fri, 07 Oct 2022 15:28:08 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/templates/ + uri: https://api.staging.cloudtruth.io/api/v1/environments/ body: encoding: US-ASCII string: '' @@ -532,7 +510,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -545,25 +523,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:39:10 GMT + - Fri, 07 Oct 2022 15:28:10 GMT Content-Type: - application/json Content-Length: - - '1595' + - '2085' Connection: - keep-alive Set-Cookie: - - AWSALB=ErIbYERJe1uexyQiIDZxk0wOubYVbX+ju/q9eAcGRp9eu2pg0NEV6VbLw2zawBywmZg3tHEBrjQKORImiD11e6wKHofZ0mF1XijDOCdrRApXbm/Wp1TgEeyaPJ2u; - Expires=Tue, 11 Jan 2022 17:39:10 GMT; Path=/ - - AWSALBCORS=ErIbYERJe1uexyQiIDZxk0wOubYVbX+ju/q9eAcGRp9eu2pg0NEV6VbLw2zawBywmZg3tHEBrjQKORImiD11e6wKHofZ0mF1XijDOCdrRApXbm/Wp1TgEeyaPJ2u; - Expires=Tue, 11 Jan 2022 17:39:10 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=KnviN8tJEaUVXmJH5D12D7Lx8pJXA9CHL6b8on95Uk/qsMhwu7mdLKBuuJRelaOH/jnvzPvSajE9Rb5wwJIfeC9Ap/8/wYFgpAW/PWx1bpjPR4QJz/2zlrDzw3WqFgdauyiJ5JbYRymyBCU8R6z+2j+974/dfjOiSSsfKs2xSyiK; - Expires=Tue, 11 Jan 2022 17:39:10 GMT; Path=/ - - AWSALBTGCORS=KnviN8tJEaUVXmJH5D12D7Lx8pJXA9CHL6b8on95Uk/qsMhwu7mdLKBuuJRelaOH/jnvzPvSajE9Rb5wwJIfeC9Ap/8/wYFgpAW/PWx1bpjPR4QJz/2zlrDzw3WqFgdauyiJ5JbYRymyBCU8R6z+2j+974/dfjOiSSsfKs2xSyiK; - Expires=Tue, 11 Jan 2022 17:39:10 GMT; Path=/; SameSite=None; Secure - - csrftoken=w7eRpKrKIsWZ2nDuQENdQ1ClbJ3aXBM3nIX7wCZeHJqZSkJY2b0Ms2OGdGEWXVdw; - expires=Tue, 03 Jan 2023 17:39:10 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=jb15lp0y9zq68vfzwaus2k867g4vf9ve; expires=Tue, 18 Jan 2022 17:39:10 + - AWSALB=vg9cy66ye6BTcyKpIpIPm292GnJGAqPpDLWq6ES18tMdhFYBKPN+lGjTs97Myk79Yrow4MgRiophvILmsN3/pjAPCLTomMFSMJTN13jO4fVuIfsvJmmdfuepfuVU; + Expires=Fri, 14 Oct 2022 15:28:08 GMT; Path=/ + - AWSALBCORS=vg9cy66ye6BTcyKpIpIPm292GnJGAqPpDLWq6ES18tMdhFYBKPN+lGjTs97Myk79Yrow4MgRiophvILmsN3/pjAPCLTomMFSMJTN13jO4fVuIfsvJmmdfuepfuVU; + Expires=Fri, 14 Oct 2022 15:28:08 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=pvBFdVHKZ7j63xBdrry+MstaWWUNhhMMtWlWnx9w3ltIMMLvw92SHyKsQUvKctZxkc/uCQb1d5h+nfb/u2nJQYKlpljOXz67M2O8MhUmRD+YAV+C2mDtigZY9+4ccg5EqCA07okjUF1iEpRb9ZX7/36mU0gtQvad/6FAkrDNLY4V; + Expires=Fri, 14 Oct 2022 15:28:08 GMT; Path=/ + - AWSALBTGCORS=pvBFdVHKZ7j63xBdrry+MstaWWUNhhMMtWlWnx9w3ltIMMLvw92SHyKsQUvKctZxkc/uCQb1d5h+nfb/u2nJQYKlpljOXz67M2O8MhUmRD+YAV+C2mDtigZY9+4ccg5EqCA07okjUF1iEpRb9ZX7/36mU0gtQvad/6FAkrDNLY4V; + Expires=Fri, 14 Oct 2022 15:28:08 GMT; Path=/; SameSite=None; Secure + - csrftoken=13lIui4ON5YYqJCM2WWLFMo24PTMlgTJVceN0km0Ma8su6k54eL9iLJWYxQ74Vi9; + expires=Fri, 06 Oct 2023 15:28:10 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=iw8skacf6pq7m91ektwyx8ejh8g7vjyx; expires=Fri, 21 Oct 2022 15:28:10 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -581,8 +559,73 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/templates/c2e3b764-419e-4dcd-b367-f8c4ca14ee18/","id":"c2e3b764-419e-4dcd-b367-f8c4ca14ee18","name":"tone","description":"","evaluated":false,"body":"tmpl1 - {{one}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/parameters/72d2db04-0d26-4048-970e-83ea74e13e0b/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:39:09.741670Z","modified_at":"2022-01-04T17:39:09.741670Z","parameters":["https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/parameters/72d2db04-0d26-4048-970e-83ea74e13e0b/"],"references":[],"referenced_by":[]},{"url":"https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/templates/b220fd7c-f1d2-4844-9bb3-d93a11a92afe/","id":"b220fd7c-f1d2-4844-9bb3-d93a11a92afe","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 - {{two}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/parameters/92b00ad2-7559-4a3a-a5b7-abd2df34f29a/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:39:10.247905Z","modified_at":"2022-01-04T17:39:10.247905Z","parameters":["https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/parameters/92b00ad2-7559-4a3a-a5b7-abd2df34f29a/"],"references":[],"referenced_by":[]}]}' - recorded_at: Tue, 04 Jan 2022 17:39:10 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","id":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","name":"default","description":"Default + environment, base for all environments.","parent":null,"children":["https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/"],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.112161Z","modified_at":"2022-06-02T17:13:09.641786Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","id":"8f2e37b9-b429-4987-bb85-abd24bd67274","name":"development","description":"Development + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.123839Z","modified_at":"2022-06-02T17:11:55.123839Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","id":"0663ac09-5883-452b-bc1a-00e3347fece5","name":"production","description":"Production + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.145580Z","modified_at":"2022-06-02T17:11:55.145580Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/","id":"fc970cc2-c24f-427d-9c7a-70acde9f1b64","name":"staging","description":"Staging + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.134547Z","modified_at":"2022-06-02T17:11:55.134547Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:28:10 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/templates/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76 + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 15:28:11 GMT + Content-Type: + - application/json + Content-Length: + - '1693' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=e3/j2cVT4LEIs8SY82c0U83ElISs9He+G0FRZHbvk/oAaOOvBHD/JpaWYJFAAZD6MGub/4Qvrv3u6gQ7zyK7gtTvQarTvOIResRvfoMq4OidBwUMniCfcKskEHUR; + Expires=Fri, 14 Oct 2022 15:28:10 GMT; Path=/ + - AWSALBCORS=e3/j2cVT4LEIs8SY82c0U83ElISs9He+G0FRZHbvk/oAaOOvBHD/JpaWYJFAAZD6MGub/4Qvrv3u6gQ7zyK7gtTvQarTvOIResRvfoMq4OidBwUMniCfcKskEHUR; + Expires=Fri, 14 Oct 2022 15:28:10 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=kjx1QdARLk6jGEthodIz3LEFVT0H9U9SBcgqwXDn6ywJpzESc4FbqeF9TnVExbrZmO4yFepgPY3VsPPUU+1Gj5HjolR9Y96xmV4pL4F9safXlGNnrRnfYSafISxc9+1T81Gca3ZrQ95YN1//dAYalvkNPCZ7IzyUnRDm4zDHK5ek; + Expires=Fri, 14 Oct 2022 15:28:10 GMT; Path=/ + - AWSALBTGCORS=kjx1QdARLk6jGEthodIz3LEFVT0H9U9SBcgqwXDn6ywJpzESc4FbqeF9TnVExbrZmO4yFepgPY3VsPPUU+1Gj5HjolR9Y96xmV4pL4F9safXlGNnrRnfYSafISxc9+1T81Gca3ZrQ95YN1//dAYalvkNPCZ7IzyUnRDm4zDHK5ek; + Expires=Fri, 14 Oct 2022 15:28:10 GMT; Path=/; SameSite=None; Secure + - csrftoken=6kCAKIUQp6pziy6gOxLWVbYYi6Zywnopkayi6SihFxcCGOyI9jQ9gaB2yfKxkVAB; + expires=Fri, 06 Oct 2023 15:28:11 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ii0lpwxkmh64cilvqxofiaz3s0obfgwy; expires=Fri, 21 Oct 2022 15:28:11 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/templates/066a8cc5-7532-418f-a785-a9a0de4e854f/","id":"066a8cc5-7532-418f-a785-a9a0de4e854f","name":"tone","description":"","evaluated":false,"body":"tmpl1 + {{one}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/parameters/cbd263ef-0a9b-4ae9-95d7-02f6b20bf8bc/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:28:06.976545Z","modified_at":"2022-10-07T15:28:06.976545Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/parameters/cbd263ef-0a9b-4ae9-95d7-02f6b20bf8bc/"],"references":[],"referenced_by":[]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/templates/b15212ab-fb6c-418e-b65e-3fe8848b655d/","id":"b15212ab-fb6c-418e-b65e-3fe8848b655d","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 + {{two}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/parameters/9d78cdef-c55d-45f0-bc6a-2b0a6e65e66f/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:28:08.589742Z","modified_at":"2022-10-07T15:28:08.589742Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/parameters/9d78cdef-c55d-45f0-bc6a-2b0a6e65e66f/"],"references":[],"referenced_by":[]}]}' + recorded_at: Fri, 07 Oct 2022 15:28:11 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_templates/_template_id/raises_if_template_doesn_t_exist.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_templates/_template_id/raises_if_template_doesn_t_exist.yml index 807a546..168761b 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_templates/_template_id/raises_if_template_doesn_t_exist.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_templates/_template_id/raises_if_template_doesn_t_exist.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -10,7 +10,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -23,25 +23,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:39:11 GMT + - Fri, 07 Oct 2022 15:28:13 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=Ov9d0PrRdRjBagXKk6vF1kPmJbjzh3oZiNArOskUlZUWOCpdC7E0zhAXSYo1t0ihT0qXz/fmvxdJSN8XZ2x7Bw0QnJxSQtmPZOnmvE2oOa5XMw2aKhiMKHuRqKrV; - Expires=Tue, 11 Jan 2022 17:39:11 GMT; Path=/ - - AWSALBCORS=Ov9d0PrRdRjBagXKk6vF1kPmJbjzh3oZiNArOskUlZUWOCpdC7E0zhAXSYo1t0ihT0qXz/fmvxdJSN8XZ2x7Bw0QnJxSQtmPZOnmvE2oOa5XMw2aKhiMKHuRqKrV; - Expires=Tue, 11 Jan 2022 17:39:11 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=9VYFqcYsiV4Y+GKb9Cz8drSw8sIfF8yDZmZYdss0G36Jl0hbumdPUHFAggZi5Z+JEA5PQhFSr+gIMkh6G05ByrkihvoPf1J983s42uMQK5SuFElfNi9lLMb6i0VG/Jcbnywg0270bmAXpq/ahguMWXYyo847IZNlMjX8W2E1IBbq; - Expires=Tue, 11 Jan 2022 17:39:11 GMT; Path=/ - - AWSALBTGCORS=9VYFqcYsiV4Y+GKb9Cz8drSw8sIfF8yDZmZYdss0G36Jl0hbumdPUHFAggZi5Z+JEA5PQhFSr+gIMkh6G05ByrkihvoPf1J983s42uMQK5SuFElfNi9lLMb6i0VG/Jcbnywg0270bmAXpq/ahguMWXYyo847IZNlMjX8W2E1IBbq; - Expires=Tue, 11 Jan 2022 17:39:11 GMT; Path=/; SameSite=None; Secure - - csrftoken=cFLJV3dpqNkYHI5cRB9KSgTBcEAGqX3wcYwGL8pr6U8Jy4We1lOxQfPIBROsLXUG; - expires=Tue, 03 Jan 2023 17:39:11 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=h6f5eo70oxvsu59sf7r8tk71p63bo25k; expires=Tue, 18 Jan 2022 17:39:11 + - AWSALB=BSegJdUaVDCvq0ekLegChl+OWPfDch2EhdILa8Bj6urCXWKpBHT1DbzGodKvOAo3xa+wsm3ZRk8Y/m+LokumOQzn9pv27QFZVgPdlXPRvuEaBFxL6sbkCUFTDD39; + Expires=Fri, 14 Oct 2022 15:28:12 GMT; Path=/ + - AWSALBCORS=BSegJdUaVDCvq0ekLegChl+OWPfDch2EhdILa8Bj6urCXWKpBHT1DbzGodKvOAo3xa+wsm3ZRk8Y/m+LokumOQzn9pv27QFZVgPdlXPRvuEaBFxL6sbkCUFTDD39; + Expires=Fri, 14 Oct 2022 15:28:12 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=Y7jS9jx0Vc2/rOIe8pzC6QdLeC9qGK1IKpGytYvy0XUPUvE6JOGsCqT73xAduLFnd1Hk0YL3XHarQiIEqNz/hkRj7wGflisv+MxTci6xfSB8OZsspaVcjNwjBxdouTcQ4nP2maC1BTpDFhBzvHjfBqbgnTpE8gyQb3exb0cQTq9n; + Expires=Fri, 14 Oct 2022 15:28:12 GMT; Path=/ + - AWSALBTGCORS=Y7jS9jx0Vc2/rOIe8pzC6QdLeC9qGK1IKpGytYvy0XUPUvE6JOGsCqT73xAduLFnd1Hk0YL3XHarQiIEqNz/hkRj7wGflisv+MxTci6xfSB8OZsspaVcjNwjBxdouTcQ4nP2maC1BTpDFhBzvHjfBqbgnTpE8gyQb3exb0cQTq9n; + Expires=Fri, 14 Oct 2022 15:28:12 GMT; Path=/; SameSite=None; Secure + - csrftoken=6DfV2Jdgo3p8528RYtzHMQLnr3qnVMEvLVjNz1QbqPsjNFIoUVMz5KpmgFCyl1Vd; + expires=Fri, 06 Oct 2023 15:28:13 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=droafn2ks5tkahlplmaeg29uyzxpuq9v; expires=Fri, 21 Oct 2022 15:28:13 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -59,23 +59,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/","id":"33c76626-72c9-49cb-9c92-af47781ed329","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:39:07.233411Z","modified_at":"2022-01-04T17:39:10.261165Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:39:11 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/","id":"3653a3b6-76c1-4066-8596-c08c9b6d7458","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:27:59.765101Z","modified_at":"2022-10-07T15:27:59.765101Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:28:13 GMT - request: method: delete - uri: https://api.cloudtruth.io/api/v1/projects/33c76626-72c9-49cb-9c92-af47781ed329/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/3653a3b6-76c1-4066-8596-c08c9b6d7458/ body: encoding: US-ASCII string: '' @@ -83,7 +72,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Authorization: - Api-Key Accept-Encoding: @@ -96,23 +85,23 @@ http_interactions: message: No Content headers: Date: - - Tue, 04 Jan 2022 17:39:12 GMT + - Fri, 07 Oct 2022 15:28:15 GMT Content-Length: - '0' Connection: - keep-alive Set-Cookie: - - AWSALB=IexGcEXgrEhBSVWWlom+838LeZvNXUrIjxdWi55WURDRNodkaKSW4C4p8e0nSx44NfdF4LoYlZR3st51EWWLSc80dOdevOXV+9t6KU4FFJAmeQLQSqNc/zrJ9dBX; - Expires=Tue, 11 Jan 2022 17:39:11 GMT; Path=/ - - AWSALBCORS=IexGcEXgrEhBSVWWlom+838LeZvNXUrIjxdWi55WURDRNodkaKSW4C4p8e0nSx44NfdF4LoYlZR3st51EWWLSc80dOdevOXV+9t6KU4FFJAmeQLQSqNc/zrJ9dBX; - Expires=Tue, 11 Jan 2022 17:39:11 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=lZm+qNdczh/vHxbXR2J672MOxsLPocYvqsK0QGlKN935ZTozluTcFuscwT0PvB8/20qld7Sq+Da7vJmfAjzZadlfZonNrl+s+A/KhhXpvOCB2O0O9LCmReoyUcrUrHCgmexdWAQ482u+cPr6cWRiIDEeNMH0h3lYA+y9eQTqIuOX; - Expires=Tue, 11 Jan 2022 17:39:11 GMT; Path=/ - - AWSALBTGCORS=lZm+qNdczh/vHxbXR2J672MOxsLPocYvqsK0QGlKN935ZTozluTcFuscwT0PvB8/20qld7Sq+Da7vJmfAjzZadlfZonNrl+s+A/KhhXpvOCB2O0O9LCmReoyUcrUrHCgmexdWAQ482u+cPr6cWRiIDEeNMH0h3lYA+y9eQTqIuOX; - Expires=Tue, 11 Jan 2022 17:39:11 GMT; Path=/; SameSite=None; Secure - - csrftoken=61Q8rIxmDIL6hEkVRvOrOhCTvRJXfNvukVMqe6eTvd08DH0GZYmQ2xA7BkMStyBk; - expires=Tue, 03 Jan 2023 17:39:12 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=jipqmgdbkp282x8ujp5q6h18fuqlv66z; expires=Tue, 18 Jan 2022 17:39:12 + - AWSALB=fDxKhwNh3RUw5R5RziiNZUz6Xs8ZXFLtzRVy0abd+VoR824P0bCBscvN2NDvyLEl6dIjj8+vR4JhxyoNc2wEyT2v3bTLS+aqL15ahsXMNJ85bja/N6sjWSpsEuWR; + Expires=Fri, 14 Oct 2022 15:28:13 GMT; Path=/ + - AWSALBCORS=fDxKhwNh3RUw5R5RziiNZUz6Xs8ZXFLtzRVy0abd+VoR824P0bCBscvN2NDvyLEl6dIjj8+vR4JhxyoNc2wEyT2v3bTLS+aqL15ahsXMNJ85bja/N6sjWSpsEuWR; + Expires=Fri, 14 Oct 2022 15:28:13 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=fO6X9SS2DIn6KYBRZ6WR3m5X9qPdxjszaTDukd/aa+C4BwI+SFZQk65y4ZJrqm+oTgqqFKsO4vRvW3hmkrht6Y0fm0zJ5HcAII6jdfpl3idmpO3y9oKXTjzeNfQ9WZre/qsB4UEAIZtI+Ye7XEiH7woQH5dQ2JiuqTz/JXaA/pjT; + Expires=Fri, 14 Oct 2022 15:28:13 GMT; Path=/ + - AWSALBTGCORS=fO6X9SS2DIn6KYBRZ6WR3m5X9qPdxjszaTDukd/aa+C4BwI+SFZQk65y4ZJrqm+oTgqqFKsO4vRvW3hmkrht6Y0fm0zJ5HcAII6jdfpl3idmpO3y9oKXTjzeNfQ9WZre/qsB4UEAIZtI+Ye7XEiH7woQH5dQ2JiuqTz/JXaA/pjT; + Expires=Fri, 14 Oct 2022 15:28:13 GMT; Path=/; SameSite=None; Secure + - csrftoken=8LzqXdRUP3nMFJmlMcoYIAYBjeSFJJdCV8WYr1Oj8K3HpDx81zbfeNz7tQGdDW5F; + expires=Fri, 06 Oct 2023 15:28:15 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=4c6y79milgso6ns4ldsnfqxsrd4xigb5; expires=Fri, 21 Oct 2022 15:28:15 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -131,10 +120,10 @@ http_interactions: body: encoding: UTF-8 string: '' - recorded_at: Tue, 04 Jan 2022 17:39:12 GMT + recorded_at: Fri, 07 Oct 2022 15:28:15 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: UTF-8 string: '{"name":"TestProject"}' @@ -142,7 +131,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -155,30 +144,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:12 GMT + - Fri, 07 Oct 2022 15:28:16 GMT Content-Type: - application/json Content-Length: - - '304' + - '365' Connection: - keep-alive Set-Cookie: - - AWSALB=kuuQzKCvYn0V1dfo4AnsapZAwEIRc8ue7+fVER4DVgY8W5luHwXORbtuFWu/GaaKoMtQ375cRFQlc6VMF2y7z5BMC5u9XvsRkmtjFAj4vcPCGVJ1YNUl9kF9XBCg; - Expires=Tue, 11 Jan 2022 17:39:12 GMT; Path=/ - - AWSALBCORS=kuuQzKCvYn0V1dfo4AnsapZAwEIRc8ue7+fVER4DVgY8W5luHwXORbtuFWu/GaaKoMtQ375cRFQlc6VMF2y7z5BMC5u9XvsRkmtjFAj4vcPCGVJ1YNUl9kF9XBCg; - Expires=Tue, 11 Jan 2022 17:39:12 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=X87qTEtXFoK4ZGxZwuRuCK171OCelnndh7QkzgNuP93+m19JVY47xDW5n/UjVIT4UOMEmuuVsLS3DVcVPoA+JFjUdDivnFP1jLVWtD4ZnYnQ0GyqqaQiSl2JLhRA/Fy+m7Ng18n03YduJn7NZnzK/cmSX5I11qWGnEcnrGmyvPbq; - Expires=Tue, 11 Jan 2022 17:39:12 GMT; Path=/ - - AWSALBTGCORS=X87qTEtXFoK4ZGxZwuRuCK171OCelnndh7QkzgNuP93+m19JVY47xDW5n/UjVIT4UOMEmuuVsLS3DVcVPoA+JFjUdDivnFP1jLVWtD4ZnYnQ0GyqqaQiSl2JLhRA/Fy+m7Ng18n03YduJn7NZnzK/cmSX5I11qWGnEcnrGmyvPbq; - Expires=Tue, 11 Jan 2022 17:39:12 GMT; Path=/; SameSite=None; Secure - - csrftoken=OD8SLu7oHhsXhtG9oFoDYeBoAktVpeqouQYYgGyim9ZJnqO85OVVarK48zdjIu5L; - expires=Tue, 03 Jan 2023 17:39:12 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=qy5s156sr0aeg9gkhkqbta56myg0e1s5; expires=Tue, 18 Jan 2022 17:39:12 + - AWSALB=U5RhjKxaIG+91O7uHjg1XZrKYaCL922cH6LA3/a9iYz3VMZWnbIEmWFlAQ9B64NNK0taIYD57xUsd/MSIywjGH6KNrsdZ6rryJHnrJhfprdqSsE2p/4RguqvTClD; + Expires=Fri, 14 Oct 2022 15:28:15 GMT; Path=/ + - AWSALBCORS=U5RhjKxaIG+91O7uHjg1XZrKYaCL922cH6LA3/a9iYz3VMZWnbIEmWFlAQ9B64NNK0taIYD57xUsd/MSIywjGH6KNrsdZ6rryJHnrJhfprdqSsE2p/4RguqvTClD; + Expires=Fri, 14 Oct 2022 15:28:15 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=AqpYyudhUXUfvdqSZNMhqY7j8TiylUc5j335cwUFRttP9kMKASP3SYk9EnCYclMREcJ9JtWAMnoZ01tF/x5T4NiurY7m5hxQuQYvWZXReYNTp9hEjtCuU4RqSLSqAvQ9x6J7nV4ZLkr33mz748BFj+ToVzTiwpSZcPGVEwDYSL0W; + Expires=Fri, 14 Oct 2022 15:28:15 GMT; Path=/ + - AWSALBTGCORS=AqpYyudhUXUfvdqSZNMhqY7j8TiylUc5j335cwUFRttP9kMKASP3SYk9EnCYclMREcJ9JtWAMnoZ01tF/x5T4NiurY7m5hxQuQYvWZXReYNTp9hEjtCuU4RqSLSqAvQ9x6J7nV4ZLkr33mz748BFj+ToVzTiwpSZcPGVEwDYSL0W; + Expires=Fri, 14 Oct 2022 15:28:15 GMT; Path=/; SameSite=None; Secure + - csrftoken=XVko2pGgOyQlh1RI9i3Zry8zqLSaM5wRx0W162uWzGunLPU99xZScJAEWy41Z9zL; + expires=Fri, 06 Oct 2023 15:28:16 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=e7o0jbx0i667qcsv69vxga8k07hwdgod; expires=Fri, 21 Oct 2022 15:28:16 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/ + - https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/ Vary: - Accept, Cookie, Origin Allow: @@ -193,11 +182,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/","id":"5be6b037-6306-4398-ae38-3f2eb3b6ec70","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:39:12.711650Z","modified_at":"2022-01-04T17:39:12.711650Z"}' - recorded_at: Tue, 04 Jan 2022 17:39:12 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/","id":"be2f1214-6964-40f2-96d1-655e576d4fb4","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:28:16.787968Z","modified_at":"2022-10-07T15:28:16.787968Z"}' + recorded_at: Fri, 07 Oct 2022 15:28:16 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -205,7 +194,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -218,25 +207,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:39:13 GMT + - Fri, 07 Oct 2022 15:28:18 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=4x+FZt83iSRasGNKJmYsuCMMfRcReIRnV1ZhdAxj7cPdzXPpOT7m38P4qRVt53ROrE+ncA948omeAilIRqU+QYrE/Xx3fkbPn5/RY9Ek8Qct8cWuqHvQc/rEQSF1; - Expires=Tue, 11 Jan 2022 17:39:12 GMT; Path=/ - - AWSALBCORS=4x+FZt83iSRasGNKJmYsuCMMfRcReIRnV1ZhdAxj7cPdzXPpOT7m38P4qRVt53ROrE+ncA948omeAilIRqU+QYrE/Xx3fkbPn5/RY9Ek8Qct8cWuqHvQc/rEQSF1; - Expires=Tue, 11 Jan 2022 17:39:12 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=qmPdA5zjAWwrip4RLn3MggV6GU3x5ri7WZTyzHQ6KjWuAxhDDJ0f7ndJbhqJ8fz8VLFHGtI2jKtGNOcYkXW9DHgDUzC63x3sZ7F/K89OZwnw8/pW+K7AUldqTCIXpAW3U532O9AabuRI5HURzLc5NMtQ3UQcHY64Tke1DQQLhoSR; - Expires=Tue, 11 Jan 2022 17:39:12 GMT; Path=/ - - AWSALBTGCORS=qmPdA5zjAWwrip4RLn3MggV6GU3x5ri7WZTyzHQ6KjWuAxhDDJ0f7ndJbhqJ8fz8VLFHGtI2jKtGNOcYkXW9DHgDUzC63x3sZ7F/K89OZwnw8/pW+K7AUldqTCIXpAW3U532O9AabuRI5HURzLc5NMtQ3UQcHY64Tke1DQQLhoSR; - Expires=Tue, 11 Jan 2022 17:39:12 GMT; Path=/; SameSite=None; Secure - - csrftoken=WnPV4851JRvGqeZGFD2463vdP4sUmGxB0PjCwdWLyWv0afaGb1xD2PWuZbnz0Vbf; - expires=Tue, 03 Jan 2023 17:39:13 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=xkcykpr7pv6htqviqkc0h77atqvaikb8; expires=Tue, 18 Jan 2022 17:39:13 + - AWSALB=EGJQOCsz0wFmVulpzx1OVM9dslw4ManpORBjLWzm4dnhMtrRa3DrmZ2Q4L3EWIP9pmu1mOzkJKTROq0mEraTd4S870+DSqs9xChra+6/oDKoyCM12ZHth3fQJqMc; + Expires=Fri, 14 Oct 2022 15:28:16 GMT; Path=/ + - AWSALBCORS=EGJQOCsz0wFmVulpzx1OVM9dslw4ManpORBjLWzm4dnhMtrRa3DrmZ2Q4L3EWIP9pmu1mOzkJKTROq0mEraTd4S870+DSqs9xChra+6/oDKoyCM12ZHth3fQJqMc; + Expires=Fri, 14 Oct 2022 15:28:16 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=LjDyQRreTK7SxHwYBSFJ8J9nJ5beKR3E7j4MBnKJOgbwiKg42B/CKTujTKE1TqtEFfWZUaF07GcoPfU5pAfKkCZqL18igz1yxr8PrB0V7OaGXcD4/R7sfw9riyLu+gXvKO106o7YHf0+NKTYi7v6opwlC2s3aKLQBUlsdOMfhcZq; + Expires=Fri, 14 Oct 2022 15:28:16 GMT; Path=/ + - AWSALBTGCORS=LjDyQRreTK7SxHwYBSFJ8J9nJ5beKR3E7j4MBnKJOgbwiKg42B/CKTujTKE1TqtEFfWZUaF07GcoPfU5pAfKkCZqL18igz1yxr8PrB0V7OaGXcD4/R7sfw9riyLu+gXvKO106o7YHf0+NKTYi7v6opwlC2s3aKLQBUlsdOMfhcZq; + Expires=Fri, 14 Oct 2022 15:28:16 GMT; Path=/; SameSite=None; Secure + - csrftoken=HusXmYsssjOyxuUKtD1WRHo3CUHzSIux2dXVG8R7vQGUXRsJ5D9124ek0wTcPuNV; + expires=Fri, 06 Oct 2023 15:28:18 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=onk43xsfg9bidmmwz9gmiu0uxqqqrhpg; expires=Fri, 21 Oct 2022 15:28:18 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -254,23 +243,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/","id":"5be6b037-6306-4398-ae38-3f2eb3b6ec70","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:39:12.711650Z","modified_at":"2022-01-04T17:39:12.711650Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:39:13 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/","id":"be2f1214-6964-40f2-96d1-655e576d4fb4","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:28:16.787968Z","modified_at":"2022-10-07T15:28:16.787968Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:28:18 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/parameters/ body: encoding: UTF-8 string: '{"name":"one","type":"string"}' @@ -278,7 +256,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -291,30 +269,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:13 GMT + - Fri, 07 Oct 2022 15:28:20 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=zdWW7FQTKUrysvMa3BncwaTrFvuFUb7lkJ4i5ZUzRfP2a0G7h2+S/zx2yipzS8OkmNHcM8hAu1uSu3OaaqsUwzNYjz0lFnrkzUODgrQFPvgAhzReyvcCposgnOz6; - Expires=Tue, 11 Jan 2022 17:39:13 GMT; Path=/ - - AWSALBCORS=zdWW7FQTKUrysvMa3BncwaTrFvuFUb7lkJ4i5ZUzRfP2a0G7h2+S/zx2yipzS8OkmNHcM8hAu1uSu3OaaqsUwzNYjz0lFnrkzUODgrQFPvgAhzReyvcCposgnOz6; - Expires=Tue, 11 Jan 2022 17:39:13 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=KCmIE/Y3u7MORLDNk1kAzdkdUX9VqoPKyF55hs1vzUANxybnZ5svkCM4h9aRqyMCgoIYDa/Laa/K1/jfFv2XCJmLVCvgPwwQZa2oM3x3UQXVheE+6FkkQuoVvWNXW5PCJvN/i1uA2N6Z6UwhDjwJp/CEnnvC4L1WeBJclYI41IrA; - Expires=Tue, 11 Jan 2022 17:39:13 GMT; Path=/ - - AWSALBTGCORS=KCmIE/Y3u7MORLDNk1kAzdkdUX9VqoPKyF55hs1vzUANxybnZ5svkCM4h9aRqyMCgoIYDa/Laa/K1/jfFv2XCJmLVCvgPwwQZa2oM3x3UQXVheE+6FkkQuoVvWNXW5PCJvN/i1uA2N6Z6UwhDjwJp/CEnnvC4L1WeBJclYI41IrA; - Expires=Tue, 11 Jan 2022 17:39:13 GMT; Path=/; SameSite=None; Secure - - csrftoken=Dxzb8p43ulhjGjqSkX2Pu0Ro6XNJIJ9gHXjASxWyhgglidTNc55wIvtH83X6I9bc; - expires=Tue, 03 Jan 2023 17:39:13 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=0jrlqzbpvzjxt2iwtmxcysfjy65c1yzy; expires=Tue, 18 Jan 2022 17:39:13 + - AWSALB=OaogcprFVvA2RSO25v8u0kQ/LTgsp+Xnt8lbBhpcdMWHETfmM6Ja23GrBvtegfHSszmr0QaH1MRCFt58M79dp0tUbEeMMXgVZ2z7RmpFkFP9RwSBFLfTJZNkjCRU; + Expires=Fri, 14 Oct 2022 15:28:19 GMT; Path=/ + - AWSALBCORS=OaogcprFVvA2RSO25v8u0kQ/LTgsp+Xnt8lbBhpcdMWHETfmM6Ja23GrBvtegfHSszmr0QaH1MRCFt58M79dp0tUbEeMMXgVZ2z7RmpFkFP9RwSBFLfTJZNkjCRU; + Expires=Fri, 14 Oct 2022 15:28:19 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=k39BGl0uwn9NaRDBNbRcXdW9cIxq1JGn2zjWGfig008sWA5HLrOs2zBoVtjGIf1dQC7qglduElMKTDo5xUMdfs+Et1VCothRd4dm4YuPjzob5QWQ11Kru7PS9FUpkGpL6C3Flp4HQgMyAw1V1BJAWLl2pukA0hf6FgCvABu+pPG7; + Expires=Fri, 14 Oct 2022 15:28:19 GMT; Path=/ + - AWSALBTGCORS=k39BGl0uwn9NaRDBNbRcXdW9cIxq1JGn2zjWGfig008sWA5HLrOs2zBoVtjGIf1dQC7qglduElMKTDo5xUMdfs+Et1VCothRd4dm4YuPjzob5QWQ11Kru7PS9FUpkGpL6C3Flp4HQgMyAw1V1BJAWLl2pukA0hf6FgCvABu+pPG7; + Expires=Fri, 14 Oct 2022 15:28:19 GMT; Path=/; SameSite=None; Secure + - csrftoken=QYvnFSgN0Mzt4Tcl0Sju8BI7okocpfS8DFkS6drtR2liO3pWBB5f6y8IfsBxmdd9; + expires=Fri, 06 Oct 2023 15:28:20 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=0ggbuefubtwa6fet2ty0pxl482ih0wc7; expires=Fri, 21 Oct 2022 15:28:20 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/parameters/42db5f18-170b-4bb8-8eca-d31ddb9ae334/ + - https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/parameters/ffc7c817-6c61-4c69-a779-55fd6d3e6370/ Vary: - Accept, Cookie, Origin Allow: @@ -329,11 +307,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/parameters/42db5f18-170b-4bb8-8eca-d31ddb9ae334/","id":"42db5f18-170b-4bb8-8eca-d31ddb9ae334","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T17:39:13.828139Z","modified_at":"2022-01-04T17:39:13.828139Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:13 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/parameters/ffc7c817-6c61-4c69-a779-55fd6d3e6370/","id":"ffc7c817-6c61-4c69-a779-55fd6d3e6370","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:28:20.157703Z","modified_at":"2022-10-07T15:28:20.157703Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:28:20 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/parameters/ body: encoding: UTF-8 string: '{"name":"two","type":"string"}' @@ -341,7 +319,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -354,30 +332,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:14 GMT + - Fri, 07 Oct 2022 15:28:21 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=GfA+IgBCVk25gL9UpVZt5CbEaO8Abd0Ye3k1QrWVztNe/tSVOKCGHoWv5OnGl3wIkt021678kjdKjnYov/5eiqOSb6aYT7nO/kgENtLC0qpg9S7Ar+yoTF4AdsOw; - Expires=Tue, 11 Jan 2022 17:39:14 GMT; Path=/ - - AWSALBCORS=GfA+IgBCVk25gL9UpVZt5CbEaO8Abd0Ye3k1QrWVztNe/tSVOKCGHoWv5OnGl3wIkt021678kjdKjnYov/5eiqOSb6aYT7nO/kgENtLC0qpg9S7Ar+yoTF4AdsOw; - Expires=Tue, 11 Jan 2022 17:39:14 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=LxUZa+EHc9APY6V2hKLNXrS0SPzQ26CT/uV1kgscRoC4I9Li2mSOzo7AvernE8IJDAFfVGP3UAzBAvqMT0R7JFu5L5jvaJN99X0PFIoa9i6EW4qjxC3NdJG+h7rrExU94BPKFRF4J3uwgc8PLMSCbOj0qmbgK6kmX8nJfx0TRmOp; - Expires=Tue, 11 Jan 2022 17:39:14 GMT; Path=/ - - AWSALBTGCORS=LxUZa+EHc9APY6V2hKLNXrS0SPzQ26CT/uV1kgscRoC4I9Li2mSOzo7AvernE8IJDAFfVGP3UAzBAvqMT0R7JFu5L5jvaJN99X0PFIoa9i6EW4qjxC3NdJG+h7rrExU94BPKFRF4J3uwgc8PLMSCbOj0qmbgK6kmX8nJfx0TRmOp; - Expires=Tue, 11 Jan 2022 17:39:14 GMT; Path=/; SameSite=None; Secure - - csrftoken=56uTH7gmR3TICQqDIAI6QGKCrVUMXUzcGLctMNWDO9Adf9GsWw1qGqUuQLh4Ku6c; - expires=Tue, 03 Jan 2023 17:39:14 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=no460ku205wt9xmdcxnr4v3soeh7bjkp; expires=Tue, 18 Jan 2022 17:39:14 + - AWSALB=9llKQP+6b15YKxTvWCi1+9GIMrOiy8iWVcCzcDMP1BnS1WTdJhuw5ycHJicp6pkvbYLX2mZ/1Vo/eYrnMq9Go5Q0z7Aa7PVYdKcOKTLImARPqo2Pk3wsYNc9tZ0V; + Expires=Fri, 14 Oct 2022 15:28:20 GMT; Path=/ + - AWSALBCORS=9llKQP+6b15YKxTvWCi1+9GIMrOiy8iWVcCzcDMP1BnS1WTdJhuw5ycHJicp6pkvbYLX2mZ/1Vo/eYrnMq9Go5Q0z7Aa7PVYdKcOKTLImARPqo2Pk3wsYNc9tZ0V; + Expires=Fri, 14 Oct 2022 15:28:20 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=koL3NVSm/P69GFQWBFL5AlKuSA22mZOkeMSCjMEOetmmFZhExyMMOsVe3HStPwuUl8MHZ544YWypX2VnmQ+hocGB7lpPntsO+zOZbnc4+qisnvIcDHIeNJHX39zGZPSMK2WzvLBPOL6MRl0F7IEuIbLv+NXUvP8jTf75BUxzfJ8+; + Expires=Fri, 14 Oct 2022 15:28:20 GMT; Path=/ + - AWSALBTGCORS=koL3NVSm/P69GFQWBFL5AlKuSA22mZOkeMSCjMEOetmmFZhExyMMOsVe3HStPwuUl8MHZ544YWypX2VnmQ+hocGB7lpPntsO+zOZbnc4+qisnvIcDHIeNJHX39zGZPSMK2WzvLBPOL6MRl0F7IEuIbLv+NXUvP8jTf75BUxzfJ8+; + Expires=Fri, 14 Oct 2022 15:28:20 GMT; Path=/; SameSite=None; Secure + - csrftoken=FV1aYfvUl4tvKrjvwA3nvMfdyizGtSMcnRNbT3v8ZUGzaHLvss99ko3WlzqQmlc1; + expires=Fri, 06 Oct 2023 15:28:21 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=73o4j79fy40ju2zt12otraxx3e4um8i6; expires=Fri, 21 Oct 2022 15:28:21 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/parameters/96b8f25c-d8e1-4bf4-9de4-a8cecd217bce/ + - https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/parameters/275b90dd-9f9b-4b53-b3f3-c0bdc3683707/ Vary: - Accept, Cookie, Origin Allow: @@ -392,11 +370,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/parameters/96b8f25c-d8e1-4bf4-9de4-a8cecd217bce/","id":"96b8f25c-d8e1-4bf4-9de4-a8cecd217bce","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T17:39:14.383402Z","modified_at":"2022-01-04T17:39:14.383402Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:14 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/parameters/275b90dd-9f9b-4b53-b3f3-c0bdc3683707/","id":"275b90dd-9f9b-4b53-b3f3-c0bdc3683707","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:28:21.942251Z","modified_at":"2022-10-07T15:28:21.942251Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:28:21 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/templates/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/templates/ body: encoding: UTF-8 string: '{"name":"tone","body":"tmpl1 {{one}}"}' @@ -404,7 +382,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -417,30 +395,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:15 GMT + - Fri, 07 Oct 2022 15:28:24 GMT Content-Type: - application/json Content-Length: - - '771' + - '820' Connection: - keep-alive Set-Cookie: - - AWSALB=TC6y/sp0U8gVHDN64ZxV0IXzp/4GoRbMFDTaG7dHWNrFTezNZ8TCPW+zdQ1fBjmSwPNHUsFGRWd8tl02LDM+I6jh0sw6BBSgoTvl8PMvjG8vUrNqITybyK9yx2JN; - Expires=Tue, 11 Jan 2022 17:39:14 GMT; Path=/ - - AWSALBCORS=TC6y/sp0U8gVHDN64ZxV0IXzp/4GoRbMFDTaG7dHWNrFTezNZ8TCPW+zdQ1fBjmSwPNHUsFGRWd8tl02LDM+I6jh0sw6BBSgoTvl8PMvjG8vUrNqITybyK9yx2JN; - Expires=Tue, 11 Jan 2022 17:39:14 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=oyYAFg4iYoGHsqzrRshV4wm44FA6AzE4x1IA8//IkgCfol+zKLOrk8CUe5vZGf2Q7TMAdqAZz2cyZSwuVLjcQifUR6VCI90lIgxpacOiimxBmyKnQ1V0UWFikZtZKKSvxDuRmPjzBNE6l1LQTclc41AOwvzpg+BBaurN6KIW/mh8; - Expires=Tue, 11 Jan 2022 17:39:14 GMT; Path=/ - - AWSALBTGCORS=oyYAFg4iYoGHsqzrRshV4wm44FA6AzE4x1IA8//IkgCfol+zKLOrk8CUe5vZGf2Q7TMAdqAZz2cyZSwuVLjcQifUR6VCI90lIgxpacOiimxBmyKnQ1V0UWFikZtZKKSvxDuRmPjzBNE6l1LQTclc41AOwvzpg+BBaurN6KIW/mh8; - Expires=Tue, 11 Jan 2022 17:39:14 GMT; Path=/; SameSite=None; Secure - - csrftoken=4dPGw37JRHNck3teF4g8gEdpCAMQnf7UKBiAZOyywYaGKhkNKeivcXZ5rUtV0HPE; - expires=Tue, 03 Jan 2023 17:39:15 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=9e70tdzbzgmqwwd3vr4zo8ldc558sjtl; expires=Tue, 18 Jan 2022 17:39:15 + - AWSALB=Gzc3W/J6GMqW+kK5L7nUcMTQG107b22iiHl5pWzxzCE+wsX3j+r8B1xv2MUvv5fkoL7IOPx68FbKgktjyYFyN30RAlWBtY1ludihD/TB6c8tdWXiHW4RN4+vYvjI; + Expires=Fri, 14 Oct 2022 15:28:22 GMT; Path=/ + - AWSALBCORS=Gzc3W/J6GMqW+kK5L7nUcMTQG107b22iiHl5pWzxzCE+wsX3j+r8B1xv2MUvv5fkoL7IOPx68FbKgktjyYFyN30RAlWBtY1ludihD/TB6c8tdWXiHW4RN4+vYvjI; + Expires=Fri, 14 Oct 2022 15:28:22 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=sJhMOmLWq+U30RgGj/X+T1GujiWpCYBt2scyZ0JSZbOUbjlmhuYeSR/4Hlb2Umt2KSqrm7shq8l4ju7db2L2Zjba8fTWqHiuw85MimtOjxp2ETOfCS+BwXUchK/DdxSvX0dMcRR00JF643s+NvYGeUcdDvm1qp82qgWJmFnYlY2i; + Expires=Fri, 14 Oct 2022 15:28:22 GMT; Path=/ + - AWSALBTGCORS=sJhMOmLWq+U30RgGj/X+T1GujiWpCYBt2scyZ0JSZbOUbjlmhuYeSR/4Hlb2Umt2KSqrm7shq8l4ju7db2L2Zjba8fTWqHiuw85MimtOjxp2ETOfCS+BwXUchK/DdxSvX0dMcRR00JF643s+NvYGeUcdDvm1qp82qgWJmFnYlY2i; + Expires=Fri, 14 Oct 2022 15:28:22 GMT; Path=/; SameSite=None; Secure + - csrftoken=fpNOlavYASGsDdpccu2HQg9UWbc6k6LSNGYdgkCznPxv8V29keshBFSpueVIKQos; + expires=Fri, 06 Oct 2023 15:28:24 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=pulxpzre4fzv9r0yw853423pomkqxkfl; expires=Fri, 21 Oct 2022 15:28:24 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/templates/01d45075-789b-41ca-a4fd-b289796fb28f/ + - https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/templates/2456dd9c-9798-49de-b070-14111a4c6d9f/ Vary: - Accept, Cookie, Origin Allow: @@ -455,12 +433,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/templates/01d45075-789b-41ca-a4fd-b289796fb28f/","id":"01d45075-789b-41ca-a4fd-b289796fb28f","name":"tone","description":"","evaluated":false,"body":"tmpl1 - {{one}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/parameters/42db5f18-170b-4bb8-8eca-d31ddb9ae334/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:39:14.999703Z","modified_at":"2022-01-04T17:39:14.999703Z","parameters":["https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/parameters/42db5f18-170b-4bb8-8eca-d31ddb9ae334/"],"references":[],"referenced_by":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:15 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/templates/2456dd9c-9798-49de-b070-14111a4c6d9f/","id":"2456dd9c-9798-49de-b070-14111a4c6d9f","name":"tone","description":"","evaluated":false,"body":"tmpl1 + {{one}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/parameters/ffc7c817-6c61-4c69-a779-55fd6d3e6370/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:28:24.409909Z","modified_at":"2022-10-07T15:28:24.409909Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/parameters/ffc7c817-6c61-4c69-a779-55fd6d3e6370/"],"references":[],"referenced_by":[]}' + recorded_at: Fri, 07 Oct 2022 15:28:24 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/templates/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/templates/ body: encoding: UTF-8 string: '{"name":"ttwo","body":"tmpl2 {{two}}"}' @@ -468,7 +446,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -481,30 +459,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:15 GMT + - Fri, 07 Oct 2022 15:28:26 GMT Content-Type: - application/json Content-Length: - - '771' + - '820' Connection: - keep-alive Set-Cookie: - - AWSALB=Re+WNjpMgsGQHYdz52LM84Sv2qGCVWVZXMB0pgzJBCBS6V+8uaPCXkHIUePAozElPnZ+pXSknVdAl1xpIgZGKsaAwHbRqx31FKEACKG2d+GzUZEQ3uQ8Vs7P8o5g; - Expires=Tue, 11 Jan 2022 17:39:15 GMT; Path=/ - - AWSALBCORS=Re+WNjpMgsGQHYdz52LM84Sv2qGCVWVZXMB0pgzJBCBS6V+8uaPCXkHIUePAozElPnZ+pXSknVdAl1xpIgZGKsaAwHbRqx31FKEACKG2d+GzUZEQ3uQ8Vs7P8o5g; - Expires=Tue, 11 Jan 2022 17:39:15 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=jOS6s2IE/m/+83yQBWx0w9KvHFEewZ2QdkukiaTNkwcNvUXXyxfhfwtTI8kL5onwn0TcU6C9gUw417J+wQPGn4DocxSkshRk+xiwJ7Gg03PuloX6Hj7anlUZYhbn5wOqRrHa47ab6uKnO4fi1ArZbrPCM9E1L7UQ2ituORJi/Bl2; - Expires=Tue, 11 Jan 2022 17:39:15 GMT; Path=/ - - AWSALBTGCORS=jOS6s2IE/m/+83yQBWx0w9KvHFEewZ2QdkukiaTNkwcNvUXXyxfhfwtTI8kL5onwn0TcU6C9gUw417J+wQPGn4DocxSkshRk+xiwJ7Gg03PuloX6Hj7anlUZYhbn5wOqRrHa47ab6uKnO4fi1ArZbrPCM9E1L7UQ2ituORJi/Bl2; - Expires=Tue, 11 Jan 2022 17:39:15 GMT; Path=/; SameSite=None; Secure - - csrftoken=bWCpPG5fHae7LXWf5xvrhfbi2Aqm8VsljN9xgDaWTSN2HX6bM5MsFBYYsRHYZ3i1; - expires=Tue, 03 Jan 2023 17:39:15 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=dhaukec20civwesm5vwbddpbrdkm6t3h; expires=Tue, 18 Jan 2022 17:39:15 + - AWSALB=ofgnIaZQhxB4XGMx0RIoFS7+fo+bqF88iQrr1b7YnePMAvtWOPq9Dno82tYY12NQ8gvVkM37OXMCULXNr60LeCkcsVwV7/xUqDenw/e380Juk1IBzSNWQ1Bz5+HW; + Expires=Fri, 14 Oct 2022 15:28:24 GMT; Path=/ + - AWSALBCORS=ofgnIaZQhxB4XGMx0RIoFS7+fo+bqF88iQrr1b7YnePMAvtWOPq9Dno82tYY12NQ8gvVkM37OXMCULXNr60LeCkcsVwV7/xUqDenw/e380Juk1IBzSNWQ1Bz5+HW; + Expires=Fri, 14 Oct 2022 15:28:24 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=PZQGKEUsQVWwaGfkgJcSIhLiQXQHNZKRuxrw9qMKTLoNgmgQ8XQU9aL4WCeZcPJlxoFCyIlQO4lqpiAHFocuZYjdYNvLH+1mSV8cX82YSpN1rCAO9xvXsi/y5QTBrPo7FI/DDD/VaTDwsrJQxCa/KrGsOCZ7ZTMKyfWdsWjGpIav; + Expires=Fri, 14 Oct 2022 15:28:24 GMT; Path=/ + - AWSALBTGCORS=PZQGKEUsQVWwaGfkgJcSIhLiQXQHNZKRuxrw9qMKTLoNgmgQ8XQU9aL4WCeZcPJlxoFCyIlQO4lqpiAHFocuZYjdYNvLH+1mSV8cX82YSpN1rCAO9xvXsi/y5QTBrPo7FI/DDD/VaTDwsrJQxCa/KrGsOCZ7ZTMKyfWdsWjGpIav; + Expires=Fri, 14 Oct 2022 15:28:24 GMT; Path=/; SameSite=None; Secure + - csrftoken=xVNumL6klkygLK3AnFJCxlMgWWt9sv9EaF70zOyG8VhgkBgaYzxBsHlHUOVUKj6E; + expires=Fri, 06 Oct 2023 15:28:26 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=iirujog3uxacx6tpiuwst0c8dfmyclcc; expires=Fri, 21 Oct 2022 15:28:26 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/templates/fc94ecaf-7655-41c5-9ade-584a8b62f150/ + - https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/templates/c86a903e-8e1e-4784-97d4-0040bfe67774/ Vary: - Accept, Cookie, Origin Allow: @@ -519,12 +497,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/templates/fc94ecaf-7655-41c5-9ade-584a8b62f150/","id":"fc94ecaf-7655-41c5-9ade-584a8b62f150","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 - {{two}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/parameters/96b8f25c-d8e1-4bf4-9de4-a8cecd217bce/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:39:15.684608Z","modified_at":"2022-01-04T17:39:15.684608Z","parameters":["https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/parameters/96b8f25c-d8e1-4bf4-9de4-a8cecd217bce/"],"references":[],"referenced_by":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:15 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/templates/c86a903e-8e1e-4784-97d4-0040bfe67774/","id":"c86a903e-8e1e-4784-97d4-0040bfe67774","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 + {{two}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/parameters/275b90dd-9f9b-4b53-b3f3-c0bdc3683707/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:28:26.044227Z","modified_at":"2022-10-07T15:28:26.044227Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/parameters/275b90dd-9f9b-4b53-b3f3-c0bdc3683707/"],"references":[],"referenced_by":[]}' + recorded_at: Fri, 07 Oct 2022 15:28:26 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/templates/ + uri: https://api.staging.cloudtruth.io/api/v1/environments/ body: encoding: US-ASCII string: '' @@ -532,7 +510,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -545,25 +523,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:39:16 GMT + - Fri, 07 Oct 2022 15:28:28 GMT Content-Type: - application/json Content-Length: - - '1595' + - '2085' Connection: - keep-alive Set-Cookie: - - AWSALB=wuI8LIDPiPBvpOdAbvbchHz5FLPeZqbi3jWqwzhZVUFsp6rwzBjSCVmxvrQZu0MJI5qHuUrSUiwCUDKmCEme0pu/V1J6tDTX+Bsv18/iIjNF+RNfVGr1w3mGeMns; - Expires=Tue, 11 Jan 2022 17:39:15 GMT; Path=/ - - AWSALBCORS=wuI8LIDPiPBvpOdAbvbchHz5FLPeZqbi3jWqwzhZVUFsp6rwzBjSCVmxvrQZu0MJI5qHuUrSUiwCUDKmCEme0pu/V1J6tDTX+Bsv18/iIjNF+RNfVGr1w3mGeMns; - Expires=Tue, 11 Jan 2022 17:39:15 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=f4XHEq3WDQvuHXuTfT/4CAt+FeuEsDf/zKboDPiHGZqlbmq32WKMg1wrdw24CttvJ0IHsrrBfBWmYRtmjzkuuLQiWVibawrpt7sUFfkyRf+FEIv76k+zi1E7KxxGh9MJ1AIqkYq/B5G+SVrcn2UD/BTXxU6Jo70PYNKArEKek6td; - Expires=Tue, 11 Jan 2022 17:39:15 GMT; Path=/ - - AWSALBTGCORS=f4XHEq3WDQvuHXuTfT/4CAt+FeuEsDf/zKboDPiHGZqlbmq32WKMg1wrdw24CttvJ0IHsrrBfBWmYRtmjzkuuLQiWVibawrpt7sUFfkyRf+FEIv76k+zi1E7KxxGh9MJ1AIqkYq/B5G+SVrcn2UD/BTXxU6Jo70PYNKArEKek6td; - Expires=Tue, 11 Jan 2022 17:39:15 GMT; Path=/; SameSite=None; Secure - - csrftoken=jO3XFafqAawkB2xIztcQhWN1dRGJuXyv6vdAvdYNiyIKL2RONOSh9dn9w6biZqt9; - expires=Tue, 03 Jan 2023 17:39:16 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=9q63untpyqm76rssuypmpnc7s9gs98pp; expires=Tue, 18 Jan 2022 17:39:16 + - AWSALB=wcF9WMrAeKm4XCadHSCk8PjoVI+JsCQ+kjsiCPTCqYZzGcVn18QbxboEg/ROrZ5WfEyv05PVYcrAQJNWWxpOy+CZUUNcO+u/x1WQjOvAfCiX2r6xmbRu9XfMiJn7; + Expires=Fri, 14 Oct 2022 15:28:26 GMT; Path=/ + - AWSALBCORS=wcF9WMrAeKm4XCadHSCk8PjoVI+JsCQ+kjsiCPTCqYZzGcVn18QbxboEg/ROrZ5WfEyv05PVYcrAQJNWWxpOy+CZUUNcO+u/x1WQjOvAfCiX2r6xmbRu9XfMiJn7; + Expires=Fri, 14 Oct 2022 15:28:26 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=hxt46Bc3tC+5XSmJKJ8RrU9LTius3m3DNClvaXTJoB3EnOlgaiPvP2M6I8qu1+gBrK8pjS7je1jib4SmaY3BrQMNNKQL4zQO696BKQXUgTQceQ+0cj1kozB77ExVvUglxWQtUmN9PVmLUDAD9y4MLMMZ6LeDUQodqqfLGmi1QfEH; + Expires=Fri, 14 Oct 2022 15:28:26 GMT; Path=/ + - AWSALBTGCORS=hxt46Bc3tC+5XSmJKJ8RrU9LTius3m3DNClvaXTJoB3EnOlgaiPvP2M6I8qu1+gBrK8pjS7je1jib4SmaY3BrQMNNKQL4zQO696BKQXUgTQceQ+0cj1kozB77ExVvUglxWQtUmN9PVmLUDAD9y4MLMMZ6LeDUQodqqfLGmi1QfEH; + Expires=Fri, 14 Oct 2022 15:28:26 GMT; Path=/; SameSite=None; Secure + - csrftoken=D0r8ZMptgBbBF12Ap1LGGCuEonDqm5EbJ7vFILL1sHXoX6Bq5PUPxgklRXMXiRWh; + expires=Fri, 06 Oct 2023 15:28:28 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=swm87pp3oeu8lbm6swyjfdme7jlc1sii; expires=Fri, 21 Oct 2022 15:28:28 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -581,8 +559,73 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/templates/01d45075-789b-41ca-a4fd-b289796fb28f/","id":"01d45075-789b-41ca-a4fd-b289796fb28f","name":"tone","description":"","evaluated":false,"body":"tmpl1 - {{one}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/parameters/42db5f18-170b-4bb8-8eca-d31ddb9ae334/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:39:14.999703Z","modified_at":"2022-01-04T17:39:14.999703Z","parameters":["https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/parameters/42db5f18-170b-4bb8-8eca-d31ddb9ae334/"],"references":[],"referenced_by":[]},{"url":"https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/templates/fc94ecaf-7655-41c5-9ade-584a8b62f150/","id":"fc94ecaf-7655-41c5-9ade-584a8b62f150","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 - {{two}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/parameters/96b8f25c-d8e1-4bf4-9de4-a8cecd217bce/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:39:15.684608Z","modified_at":"2022-01-04T17:39:15.684608Z","parameters":["https://api.cloudtruth.io/api/v1/projects/5be6b037-6306-4398-ae38-3f2eb3b6ec70/parameters/96b8f25c-d8e1-4bf4-9de4-a8cecd217bce/"],"references":[],"referenced_by":[]}]}' - recorded_at: Tue, 04 Jan 2022 17:39:16 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","id":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","name":"default","description":"Default + environment, base for all environments.","parent":null,"children":["https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/"],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.112161Z","modified_at":"2022-06-02T17:13:09.641786Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","id":"8f2e37b9-b429-4987-bb85-abd24bd67274","name":"development","description":"Development + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.123839Z","modified_at":"2022-06-02T17:11:55.123839Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","id":"0663ac09-5883-452b-bc1a-00e3347fece5","name":"production","description":"Production + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.145580Z","modified_at":"2022-06-02T17:11:55.145580Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/","id":"fc970cc2-c24f-427d-9c7a-70acde9f1b64","name":"staging","description":"Staging + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.134547Z","modified_at":"2022-06-02T17:11:55.134547Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:28:28 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/templates/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76 + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 15:28:29 GMT + Content-Type: + - application/json + Content-Length: + - '1693' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=PfEXNXfTqqS2yWmq+yH0Wub2TAOzc8mNz5fVVNqGY2qsdyTaF/nM1s5n762xG7zPPC+lfa22e8QefF+BNB6zadzuxPYYeXlsBzms+Z93+wvg16iXCg8SIRWjMRMn; + Expires=Fri, 14 Oct 2022 15:28:28 GMT; Path=/ + - AWSALBCORS=PfEXNXfTqqS2yWmq+yH0Wub2TAOzc8mNz5fVVNqGY2qsdyTaF/nM1s5n762xG7zPPC+lfa22e8QefF+BNB6zadzuxPYYeXlsBzms+Z93+wvg16iXCg8SIRWjMRMn; + Expires=Fri, 14 Oct 2022 15:28:28 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=mKgJ1Mzc4h/ZK0eGCtct2tZSwJ9tTZu0Jd+Oh9ZxcWlyfj3qoTCKsmnBEjuaaTzv4tbaSfx0toU0i7gk5xtnvp+aie/10kW5B8AeaVGhtwY2RGYB4DWjMRppj+q+vkkBwOMdcI1JIYVPD6XUbEIqZgvKy0xVK1SrVS1LPNney5Qm; + Expires=Fri, 14 Oct 2022 15:28:28 GMT; Path=/ + - AWSALBTGCORS=mKgJ1Mzc4h/ZK0eGCtct2tZSwJ9tTZu0Jd+Oh9ZxcWlyfj3qoTCKsmnBEjuaaTzv4tbaSfx0toU0i7gk5xtnvp+aie/10kW5B8AeaVGhtwY2RGYB4DWjMRppj+q+vkkBwOMdcI1JIYVPD6XUbEIqZgvKy0xVK1SrVS1LPNney5Qm; + Expires=Fri, 14 Oct 2022 15:28:28 GMT; Path=/; SameSite=None; Secure + - csrftoken=N1hDDCGp7nbMUON8OMxAUurr3sSromlq9k1gSF2hK1eKw2JzGxOoUKOwaaWe7Ta6; + expires=Fri, 06 Oct 2023 15:28:29 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=pdbqu1rg5xajgczuk001grxkljaqnin4; expires=Fri, 21 Oct 2022 15:28:29 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/templates/2456dd9c-9798-49de-b070-14111a4c6d9f/","id":"2456dd9c-9798-49de-b070-14111a4c6d9f","name":"tone","description":"","evaluated":false,"body":"tmpl1 + {{one}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/parameters/ffc7c817-6c61-4c69-a779-55fd6d3e6370/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:28:24.409909Z","modified_at":"2022-10-07T15:28:24.409909Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/parameters/ffc7c817-6c61-4c69-a779-55fd6d3e6370/"],"references":[],"referenced_by":[]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/templates/c86a903e-8e1e-4784-97d4-0040bfe67774/","id":"c86a903e-8e1e-4784-97d4-0040bfe67774","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 + {{two}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/parameters/275b90dd-9f9b-4b53-b3f3-c0bdc3683707/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:28:26.044227Z","modified_at":"2022-10-07T15:28:26.044227Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/be2f1214-6964-40f2-96d1-655e576d4fb4/parameters/275b90dd-9f9b-4b53-b3f3-c0bdc3683707/"],"references":[],"referenced_by":[]}]}' + recorded_at: Fri, 07 Oct 2022 15:28:29 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_templates/gets_templates.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_templates/gets_templates.yml index 7734e6a..d21970d 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_templates/gets_templates.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_templates/gets_templates.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -10,7 +10,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -23,25 +23,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:38:54 GMT + - Fri, 07 Oct 2022 15:27:25 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=KFH/xp+KPLhNzJruXlzLemuJamGHr0HeJYRsZgB9LwWjCsyIEIwrseXS65kTbBmrmcv5pIGxobgmSW16DzY7lGeWXELwqqDoHf4hK5zSlrm9XpT74c2Quj9bObzD; - Expires=Tue, 11 Jan 2022 17:38:54 GMT; Path=/ - - AWSALBCORS=KFH/xp+KPLhNzJruXlzLemuJamGHr0HeJYRsZgB9LwWjCsyIEIwrseXS65kTbBmrmcv5pIGxobgmSW16DzY7lGeWXELwqqDoHf4hK5zSlrm9XpT74c2Quj9bObzD; - Expires=Tue, 11 Jan 2022 17:38:54 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=y4G6Cn/aIiRDrRIsf8QbvR0sZ6upQ1OiS04Cf2NPs1rnI192l17cAjmaEr9gEAm0LdBB9MQLf7gp0j/7kpfjOU6xRFS4WWFpKS8mmJY4CInpr29xbNRVSVcecYDn8p6ksM+Zxv+LMeeBO/HZE1LFOOQgzF0XrrU27ZjYNlokaWAh; - Expires=Tue, 11 Jan 2022 17:38:54 GMT; Path=/ - - AWSALBTGCORS=y4G6Cn/aIiRDrRIsf8QbvR0sZ6upQ1OiS04Cf2NPs1rnI192l17cAjmaEr9gEAm0LdBB9MQLf7gp0j/7kpfjOU6xRFS4WWFpKS8mmJY4CInpr29xbNRVSVcecYDn8p6ksM+Zxv+LMeeBO/HZE1LFOOQgzF0XrrU27ZjYNlokaWAh; - Expires=Tue, 11 Jan 2022 17:38:54 GMT; Path=/; SameSite=None; Secure - - csrftoken=Ra3tSq0VjlksZsLbFl3fUmcjpPCX5C8RwbG7SIL97NdUuQ625Oc2juOuHlqDmIzi; - expires=Tue, 03 Jan 2023 17:38:54 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=eikrbvzjiriub14hx5raktf6dp51xie2; expires=Tue, 18 Jan 2022 17:38:54 + - AWSALB=1Bv61ezQlXd015fGMzv6heVfKP5ID65b1uh16cDjHE5CMuabq0LPZiFGJA2BLvx01qRWtLbg163MJhX/A6Y1debkDvg4VjhIsJbdc3rJwfvgLCejEkmsP25gNltW; + Expires=Fri, 14 Oct 2022 15:27:24 GMT; Path=/ + - AWSALBCORS=1Bv61ezQlXd015fGMzv6heVfKP5ID65b1uh16cDjHE5CMuabq0LPZiFGJA2BLvx01qRWtLbg163MJhX/A6Y1debkDvg4VjhIsJbdc3rJwfvgLCejEkmsP25gNltW; + Expires=Fri, 14 Oct 2022 15:27:24 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=m4Pjl3xcChDZVIG140emZGLdFj8ASgOSdhgQNaHWt8skoMReMAqbH7z0+mPmFm+QExgqAgmAI1UkxXDtza47vBIyT/4kKzvYQhBl86TfYfhXbP3+dp6Eur0uB5y68KDqO9a64CTWc8hdMihfkj+hraqYYqoUx+8KLhMVmxLktUKQ; + Expires=Fri, 14 Oct 2022 15:27:24 GMT; Path=/ + - AWSALBTGCORS=m4Pjl3xcChDZVIG140emZGLdFj8ASgOSdhgQNaHWt8skoMReMAqbH7z0+mPmFm+QExgqAgmAI1UkxXDtza47vBIyT/4kKzvYQhBl86TfYfhXbP3+dp6Eur0uB5y68KDqO9a64CTWc8hdMihfkj+hraqYYqoUx+8KLhMVmxLktUKQ; + Expires=Fri, 14 Oct 2022 15:27:24 GMT; Path=/; SameSite=None; Secure + - csrftoken=841iSDhwH5wqN1LteLNAMosM3ubcuqWjGKEQ5ZfCVz2iQmQih6zZsB5SQGSJxIKI; + expires=Fri, 06 Oct 2023 15:27:25 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=x216bnmklaue476sw87mmkhytuxi29rj; expires=Fri, 21 Oct 2022 15:27:25 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -59,23 +59,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/316c8707-5949-41ae-be76-3195e428b7e3/","id":"316c8707-5949-41ae-be76-3195e428b7e3","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:38:52.049936Z","modified_at":"2022-01-04T17:38:53.730511Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:38:54 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/","id":"fffdbf77-fa0b-4f53-8f04-8ec4c9455fda","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:27:09.613424Z","modified_at":"2022-10-07T15:27:09.613424Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:27:25 GMT - request: method: delete - uri: https://api.cloudtruth.io/api/v1/projects/316c8707-5949-41ae-be76-3195e428b7e3/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/fffdbf77-fa0b-4f53-8f04-8ec4c9455fda/ body: encoding: US-ASCII string: '' @@ -83,7 +72,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Authorization: - Api-Key Accept-Encoding: @@ -96,23 +85,23 @@ http_interactions: message: No Content headers: Date: - - Tue, 04 Jan 2022 17:38:55 GMT + - Fri, 07 Oct 2022 15:27:27 GMT Content-Length: - '0' Connection: - keep-alive Set-Cookie: - - AWSALB=nPIcm57F/t7x+kUbDYu8B4Klr2OYyEjrvuNazpWdxSBQDQljf4BfR/uO9dNnEzLoRx+091CA+j86OTHM1IwNdo6Px97HwUHZ90oE198c8NHhUfZghDnsrgbn6UuL; - Expires=Tue, 11 Jan 2022 17:38:54 GMT; Path=/ - - AWSALBCORS=nPIcm57F/t7x+kUbDYu8B4Klr2OYyEjrvuNazpWdxSBQDQljf4BfR/uO9dNnEzLoRx+091CA+j86OTHM1IwNdo6Px97HwUHZ90oE198c8NHhUfZghDnsrgbn6UuL; - Expires=Tue, 11 Jan 2022 17:38:54 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=8GhtnYKv+LJGGAVOTHNISi3Ba0+7nr2OVs+gLYY83l9/D7VF6aaoYoxAOibBxIbcQwN00q1vXoynxhhDIODl37yCJ1AUbPEalVlyyEN/UtqCCeFdE028VhKU8LwMauffm159uFSvxNuDKtxPPCqxYPGiprdooyNar3Jn8gjKqny3; - Expires=Tue, 11 Jan 2022 17:38:54 GMT; Path=/ - - AWSALBTGCORS=8GhtnYKv+LJGGAVOTHNISi3Ba0+7nr2OVs+gLYY83l9/D7VF6aaoYoxAOibBxIbcQwN00q1vXoynxhhDIODl37yCJ1AUbPEalVlyyEN/UtqCCeFdE028VhKU8LwMauffm159uFSvxNuDKtxPPCqxYPGiprdooyNar3Jn8gjKqny3; - Expires=Tue, 11 Jan 2022 17:38:54 GMT; Path=/; SameSite=None; Secure - - csrftoken=Pzf6CymfDy680ITJDowYbX6CQACpTMDvYEBfkF84XofGCKcdOS0uglo6N2AZIHCl; - expires=Tue, 03 Jan 2023 17:38:55 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=vg0wvko3h068ul0t7c1x0qms9qx52pwx; expires=Tue, 18 Jan 2022 17:38:55 + - AWSALB=KPYl3OQxlDQMyZ5GGu4+KBZ0o0gwIktZ+ODZHADC1B2jOqoDfyITs+QiAJ8WRiq6miKHH3b0/B8oHMPhXTVP9oY1dnADIPdsZhXTzB/pu1c8Wt7cvTFeHcbmSDpw; + Expires=Fri, 14 Oct 2022 15:27:25 GMT; Path=/ + - AWSALBCORS=KPYl3OQxlDQMyZ5GGu4+KBZ0o0gwIktZ+ODZHADC1B2jOqoDfyITs+QiAJ8WRiq6miKHH3b0/B8oHMPhXTVP9oY1dnADIPdsZhXTzB/pu1c8Wt7cvTFeHcbmSDpw; + Expires=Fri, 14 Oct 2022 15:27:25 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=oKIJW7LK+ch23D8RciDsXU9AMJJW+yHmNOEKoXK5DN2IBU/fgJR0eTI7QwC7VK4TUm6E13JCR0HX7vdADXlwPcf2dnEdK+aFQ0OMsJZDiLcuq5fJ8QXBOt8MRF3ijhchxsHhwjylzP5hvTfpdOmj+5MWjh2Jxa/1FqasfMr4W292; + Expires=Fri, 14 Oct 2022 15:27:25 GMT; Path=/ + - AWSALBTGCORS=oKIJW7LK+ch23D8RciDsXU9AMJJW+yHmNOEKoXK5DN2IBU/fgJR0eTI7QwC7VK4TUm6E13JCR0HX7vdADXlwPcf2dnEdK+aFQ0OMsJZDiLcuq5fJ8QXBOt8MRF3ijhchxsHhwjylzP5hvTfpdOmj+5MWjh2Jxa/1FqasfMr4W292; + Expires=Fri, 14 Oct 2022 15:27:25 GMT; Path=/; SameSite=None; Secure + - csrftoken=D9g7FlQGXDNGgndvqIz6oo5zvvX4spjgWZde1mREu09kYRPZwM8ggC66E4Le2wkB; + expires=Fri, 06 Oct 2023 15:27:27 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=9rnfwg89isr0zfh8gbflntnvzwlf58mz; expires=Fri, 21 Oct 2022 15:27:27 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -131,10 +120,10 @@ http_interactions: body: encoding: UTF-8 string: '' - recorded_at: Tue, 04 Jan 2022 17:38:55 GMT + recorded_at: Fri, 07 Oct 2022 15:27:27 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: UTF-8 string: '{"name":"TestProject"}' @@ -142,7 +131,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -155,30 +144,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:38:55 GMT + - Fri, 07 Oct 2022 15:27:29 GMT Content-Type: - application/json Content-Length: - - '304' + - '365' Connection: - keep-alive Set-Cookie: - - AWSALB=o/6eJTCbhEPKpVKLf3VaewOe6sagmMDOVBTPbYjduiq7nAHnaAnU/XpFS37yli2JvDZvUX2dYUAwYzsrYUC1PD//pOfRgMiInAlYFgaLiEXdemNpUqj+0LPvqCf9; - Expires=Tue, 11 Jan 2022 17:38:55 GMT; Path=/ - - AWSALBCORS=o/6eJTCbhEPKpVKLf3VaewOe6sagmMDOVBTPbYjduiq7nAHnaAnU/XpFS37yli2JvDZvUX2dYUAwYzsrYUC1PD//pOfRgMiInAlYFgaLiEXdemNpUqj+0LPvqCf9; - Expires=Tue, 11 Jan 2022 17:38:55 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=GLECa4q7hYj/iEUDwSogA972uXM1T8iNQFqkgKTnLHiYm7kCkIsaoGZY/6v1DSlUuullRM9AAAgCYJqpU9PjRRdYyg+C2gU8A9umK91dl4myNpVAL0BiLuF7BYzrnNqkfkk2k0WBXkQ9UcygLf2HEh5Ldx9YaouXuaI/UwPZYaZS; - Expires=Tue, 11 Jan 2022 17:38:55 GMT; Path=/ - - AWSALBTGCORS=GLECa4q7hYj/iEUDwSogA972uXM1T8iNQFqkgKTnLHiYm7kCkIsaoGZY/6v1DSlUuullRM9AAAgCYJqpU9PjRRdYyg+C2gU8A9umK91dl4myNpVAL0BiLuF7BYzrnNqkfkk2k0WBXkQ9UcygLf2HEh5Ldx9YaouXuaI/UwPZYaZS; - Expires=Tue, 11 Jan 2022 17:38:55 GMT; Path=/; SameSite=None; Secure - - csrftoken=A3xukZ3AEI5HMaz4jaMjYvHjgeurVPYAQ6tm02LoOAEtp3Ytojoz12o7qkeU9cyW; - expires=Tue, 03 Jan 2023 17:38:55 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=ah1p8rs3ade306f1cah2hr8bt98s4h63; expires=Tue, 18 Jan 2022 17:38:55 + - AWSALB=nvxp4KE2aGv+EGKCoV/pWWY59GmzTnDhfyP1OKYvLEsgw6JayuPP6RAuZ5FoYHYkEunbrpgyNSqp0+OFQsbVyMwwevL5Jy+1tnS1p7LL5qvUH4MNb6C6Octlv+u9; + Expires=Fri, 14 Oct 2022 15:27:27 GMT; Path=/ + - AWSALBCORS=nvxp4KE2aGv+EGKCoV/pWWY59GmzTnDhfyP1OKYvLEsgw6JayuPP6RAuZ5FoYHYkEunbrpgyNSqp0+OFQsbVyMwwevL5Jy+1tnS1p7LL5qvUH4MNb6C6Octlv+u9; + Expires=Fri, 14 Oct 2022 15:27:27 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=9F2Jko5HiipmkE2xJR+Fp/2+DlVZTjFQG3bZbzXGMsCEWqJFDrvATefGZdWctnkklbXmHrFx9yMnruIlnRcTcHo2f186zIRtC1nhCmVEKbkj1qa5V7oXRqfHJp25t+8jgbWSYGopz3x+j8TKL9K+5pqx/922dlO4ujruHZIeShGG; + Expires=Fri, 14 Oct 2022 15:27:27 GMT; Path=/ + - AWSALBTGCORS=9F2Jko5HiipmkE2xJR+Fp/2+DlVZTjFQG3bZbzXGMsCEWqJFDrvATefGZdWctnkklbXmHrFx9yMnruIlnRcTcHo2f186zIRtC1nhCmVEKbkj1qa5V7oXRqfHJp25t+8jgbWSYGopz3x+j8TKL9K+5pqx/922dlO4ujruHZIeShGG; + Expires=Fri, 14 Oct 2022 15:27:27 GMT; Path=/; SameSite=None; Secure + - csrftoken=ufJlfY6Y4efLNMR6mUWIwLobdD6WV65LxltTsW5pVoCCH2JydFcXlN6euwqA32Xp; + expires=Fri, 06 Oct 2023 15:27:29 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=9t692u85ylsoetsc8pm4n7esl1a0im1o; expires=Fri, 21 Oct 2022 15:27:29 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/ + - https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/ Vary: - Accept, Cookie, Origin Allow: @@ -193,11 +182,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/","id":"1ebeb8c6-969f-4618-b15b-dfe83d2650a3","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:38:55.596401Z","modified_at":"2022-01-04T17:38:55.596401Z"}' - recorded_at: Tue, 04 Jan 2022 17:38:55 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/","id":"b5db2a9c-f4ed-4345-b3fd-1a7bd536a614","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:27:29.030611Z","modified_at":"2022-10-07T15:27:29.030611Z"}' + recorded_at: Fri, 07 Oct 2022 15:27:29 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -205,7 +194,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -218,25 +207,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:38:56 GMT + - Fri, 07 Oct 2022 15:27:30 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=cQsoQo+HBKqyEv3XQGgyvr/VAe3vIFT+YVWs6joW7Iq47mECl4tA6eTOrzlQuZYAkEeiIDyRAs0VYrUBwIjnET2lqCY9Ao5c+S/7mAI8/gDKZjEVTiinlWHGQ6i9; - Expires=Tue, 11 Jan 2022 17:38:55 GMT; Path=/ - - AWSALBCORS=cQsoQo+HBKqyEv3XQGgyvr/VAe3vIFT+YVWs6joW7Iq47mECl4tA6eTOrzlQuZYAkEeiIDyRAs0VYrUBwIjnET2lqCY9Ao5c+S/7mAI8/gDKZjEVTiinlWHGQ6i9; - Expires=Tue, 11 Jan 2022 17:38:55 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=8360rO/BQAJqrozWiikjfH0QcbSAW9qi0lDVdK3xg1ldop9PSgZ+LnPN6PaB5LHeE0cKR6rcoRFirynMU99bmcR9unF8q3TLY9TiXoylxS9G1/bauf+HJ085HWP7teQG6lp4+MP5HbQ5uxyhYtBqHNYbbGuquOfH6SRVeCY3aeAB; - Expires=Tue, 11 Jan 2022 17:38:55 GMT; Path=/ - - AWSALBTGCORS=8360rO/BQAJqrozWiikjfH0QcbSAW9qi0lDVdK3xg1ldop9PSgZ+LnPN6PaB5LHeE0cKR6rcoRFirynMU99bmcR9unF8q3TLY9TiXoylxS9G1/bauf+HJ085HWP7teQG6lp4+MP5HbQ5uxyhYtBqHNYbbGuquOfH6SRVeCY3aeAB; - Expires=Tue, 11 Jan 2022 17:38:55 GMT; Path=/; SameSite=None; Secure - - csrftoken=Pi8LOUv4T1yCxAgg6CULKqOwHecuL8cWhvC8O2pfn79tfSlfSPytYk3YQoSkNcZ0; - expires=Tue, 03 Jan 2023 17:38:56 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=zwojcvd1t92yw3av07xxb9e9luyau2w1; expires=Tue, 18 Jan 2022 17:38:56 + - AWSALB=gd8WfK2yoyiJWSRXjeOqkiM0Epx7++XuXZXLDlqqofy8WLvtr3hiMk9nIfv4Bq6Nh5xxD1PKV7UicVnJ4qHTc7pszg6Nl9Bi/no+vKCSoj/EV75Im2h6+L7hy8nf; + Expires=Fri, 14 Oct 2022 15:27:29 GMT; Path=/ + - AWSALBCORS=gd8WfK2yoyiJWSRXjeOqkiM0Epx7++XuXZXLDlqqofy8WLvtr3hiMk9nIfv4Bq6Nh5xxD1PKV7UicVnJ4qHTc7pszg6Nl9Bi/no+vKCSoj/EV75Im2h6+L7hy8nf; + Expires=Fri, 14 Oct 2022 15:27:29 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=rzlUN54UAKb1QByrBHMGv4EJjSe7DRQjhaON3WyBU76NNDoOTtqCl9+Vvrq8+tRkvyoehkh2p617Eu/jFiAj/CZvMl8sHjyl5MtrruVJB39MKIbxZYQPy/5mKHNmHwI7hGSF3fNEWfTaWrYCKnEDiQEz/TqnTb7RagqcMcVbOzTI; + Expires=Fri, 14 Oct 2022 15:27:29 GMT; Path=/ + - AWSALBTGCORS=rzlUN54UAKb1QByrBHMGv4EJjSe7DRQjhaON3WyBU76NNDoOTtqCl9+Vvrq8+tRkvyoehkh2p617Eu/jFiAj/CZvMl8sHjyl5MtrruVJB39MKIbxZYQPy/5mKHNmHwI7hGSF3fNEWfTaWrYCKnEDiQEz/TqnTb7RagqcMcVbOzTI; + Expires=Fri, 14 Oct 2022 15:27:29 GMT; Path=/; SameSite=None; Secure + - csrftoken=vZbcgbUn43YPGEThkgbymzFpXdPoyYKkuMxhVZjCDbTGimtIICZfV75un29T060x; + expires=Fri, 06 Oct 2023 15:27:30 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=vf3iakhav4akska5lilx8ym2xd3l9q5r; expires=Fri, 21 Oct 2022 15:27:30 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -254,23 +243,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/","id":"1ebeb8c6-969f-4618-b15b-dfe83d2650a3","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:38:55.596401Z","modified_at":"2022-01-04T17:38:55.596401Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:38:56 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/","id":"b5db2a9c-f4ed-4345-b3fd-1a7bd536a614","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:27:29.030611Z","modified_at":"2022-10-07T15:27:29.030611Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:27:30 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/parameters/ body: encoding: UTF-8 string: '{"name":"one","type":"string"}' @@ -278,7 +256,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -291,30 +269,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:38:56 GMT + - Fri, 07 Oct 2022 15:27:32 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=9usJtakodQdyX2SpEv7Su/ZLszTi4znyEiH1aqTY0ex5KTpYUwu2Awkqw0nmV7IP404Oc63GbZ+3KsOxl6qnG9hXTGX/1C/oare3uENYg2wN6OCX4S9zF5auWdpj; - Expires=Tue, 11 Jan 2022 17:38:56 GMT; Path=/ - - AWSALBCORS=9usJtakodQdyX2SpEv7Su/ZLszTi4znyEiH1aqTY0ex5KTpYUwu2Awkqw0nmV7IP404Oc63GbZ+3KsOxl6qnG9hXTGX/1C/oare3uENYg2wN6OCX4S9zF5auWdpj; - Expires=Tue, 11 Jan 2022 17:38:56 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=NzY+rR8f5YU2+IgWhRPORiqSPgfnuYF2crMPM7wKYXDN38adhJhC5B12sgnV1pIyKuvTiv0S7+30h1ZKr3ltnnsnyKJqpDqTRVe0UL07cViD0QoR3frSTgylPL8SlVOiQhKQLJWszB2rbW8Moub5IiTzckEfHzrXPVoexGrT4ReT; - Expires=Tue, 11 Jan 2022 17:38:56 GMT; Path=/ - - AWSALBTGCORS=NzY+rR8f5YU2+IgWhRPORiqSPgfnuYF2crMPM7wKYXDN38adhJhC5B12sgnV1pIyKuvTiv0S7+30h1ZKr3ltnnsnyKJqpDqTRVe0UL07cViD0QoR3frSTgylPL8SlVOiQhKQLJWszB2rbW8Moub5IiTzckEfHzrXPVoexGrT4ReT; - Expires=Tue, 11 Jan 2022 17:38:56 GMT; Path=/; SameSite=None; Secure - - csrftoken=4lc6Iin5vhyLwPSFFQh7Q6CGn5bbgPahIYJlWmoouPW2IBynjYcQtyqoJ65nkJGc; - expires=Tue, 03 Jan 2023 17:38:56 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=4u2jweq0h5kqn4prj5kued38k8otbmed; expires=Tue, 18 Jan 2022 17:38:56 + - AWSALB=ZOU4lNsSWK+/3usU7/Wvn1LHBegw4Bq485Un6K0okz/CJU3/WMeupAdL4i+PImRY3nN37ccxfO4v0Ibf5veU1+DMh5VgSJfW4dKIvAf/oG442SSRc6j9JwYoI8xR; + Expires=Fri, 14 Oct 2022 15:27:30 GMT; Path=/ + - AWSALBCORS=ZOU4lNsSWK+/3usU7/Wvn1LHBegw4Bq485Un6K0okz/CJU3/WMeupAdL4i+PImRY3nN37ccxfO4v0Ibf5veU1+DMh5VgSJfW4dKIvAf/oG442SSRc6j9JwYoI8xR; + Expires=Fri, 14 Oct 2022 15:27:30 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=lTsE/O8cGz7id5QGc1MEbb6V73UhfHb/Q7o5Xtgx/iREd5FP8Nqzb1yaSsDWf+tIefJsoA8L75oz2V7HymmzXOir/8Ui/fhw2gDyAbvXG7VnYsJ7bgDIJ/V2eayPXpX8Wj+woR0hrNQwvVHY/Ucey/NjAwiMHKntwkGqxGal6aXx; + Expires=Fri, 14 Oct 2022 15:27:30 GMT; Path=/ + - AWSALBTGCORS=lTsE/O8cGz7id5QGc1MEbb6V73UhfHb/Q7o5Xtgx/iREd5FP8Nqzb1yaSsDWf+tIefJsoA8L75oz2V7HymmzXOir/8Ui/fhw2gDyAbvXG7VnYsJ7bgDIJ/V2eayPXpX8Wj+woR0hrNQwvVHY/Ucey/NjAwiMHKntwkGqxGal6aXx; + Expires=Fri, 14 Oct 2022 15:27:30 GMT; Path=/; SameSite=None; Secure + - csrftoken=ixgs3DmbZkcsXTCRAm51FVs3wtyZoVnRJIBCZzp9VUBYSt4lYVE2YXDHo0bRG2ai; + expires=Fri, 06 Oct 2023 15:27:32 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=hhpglbge8ayztl7lt3sya8k79aj2xj7l; expires=Fri, 21 Oct 2022 15:27:32 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/parameters/7fa5a701-f607-45cd-b950-65d88a95bfd7/ + - https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/parameters/f0e3ed7c-c0f9-4646-ba3f-eb6041c017c0/ Vary: - Accept, Cookie, Origin Allow: @@ -329,11 +307,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/parameters/7fa5a701-f607-45cd-b950-65d88a95bfd7/","id":"7fa5a701-f607-45cd-b950-65d88a95bfd7","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T17:38:56.708972Z","modified_at":"2022-01-04T17:38:56.708972Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 17:38:56 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/parameters/f0e3ed7c-c0f9-4646-ba3f-eb6041c017c0/","id":"f0e3ed7c-c0f9-4646-ba3f-eb6041c017c0","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:27:32.036593Z","modified_at":"2022-10-07T15:27:32.036593Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:27:32 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/parameters/ body: encoding: UTF-8 string: '{"name":"two","type":"string"}' @@ -341,7 +319,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -354,30 +332,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:38:57 GMT + - Fri, 07 Oct 2022 15:27:33 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=SFeTjbukxSUE9P2XSG3sBa6kavw+hLoWSmnIOn+l75FutoZDMhDs2I0C3v04Xap9dadLStOSxVW7zclVmitp7DgK42I+RduqOrSemfJnVyD7QJnD5L2sAyDgOMDx; - Expires=Tue, 11 Jan 2022 17:38:56 GMT; Path=/ - - AWSALBCORS=SFeTjbukxSUE9P2XSG3sBa6kavw+hLoWSmnIOn+l75FutoZDMhDs2I0C3v04Xap9dadLStOSxVW7zclVmitp7DgK42I+RduqOrSemfJnVyD7QJnD5L2sAyDgOMDx; - Expires=Tue, 11 Jan 2022 17:38:56 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=1yVqddh3RFNks+NYhBGe9Ev8gnwOzPwHa0h9qqeG1VPldKQzZ72mKy1r/Eczet2ZTp6By3WYjlfbRqoVdHxf/Qg2ZjJ1hbJBVXtFQi89O7GeDLsjKcQcfpMgoL2OItbBJLoMdd+EsG/cpPMSn9LcRtfHyyWdVWHRkOG8YhL5/295; - Expires=Tue, 11 Jan 2022 17:38:56 GMT; Path=/ - - AWSALBTGCORS=1yVqddh3RFNks+NYhBGe9Ev8gnwOzPwHa0h9qqeG1VPldKQzZ72mKy1r/Eczet2ZTp6By3WYjlfbRqoVdHxf/Qg2ZjJ1hbJBVXtFQi89O7GeDLsjKcQcfpMgoL2OItbBJLoMdd+EsG/cpPMSn9LcRtfHyyWdVWHRkOG8YhL5/295; - Expires=Tue, 11 Jan 2022 17:38:56 GMT; Path=/; SameSite=None; Secure - - csrftoken=CfOYnnvXCBC4E35se28MPDnHkkHpfQY5p2M6MmZIKnu5ufZzDssX3mtFuNuIgeEy; - expires=Tue, 03 Jan 2023 17:38:57 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=wx8lsykvnwwoi3ptaz5ofqbnjqsa1mhr; expires=Tue, 18 Jan 2022 17:38:57 + - AWSALB=ww5JM5scwTSZKaf20pcR8zutI64xB0Ea4R1Wcef4M92S14KtsK2AAhSlULL80cJ/UTrUggsZGdbKW6WcEqgpGNvmWlnAuRt8Ah042lPOanuqojtlb/V8yNfOTJdQ; + Expires=Fri, 14 Oct 2022 15:27:32 GMT; Path=/ + - AWSALBCORS=ww5JM5scwTSZKaf20pcR8zutI64xB0Ea4R1Wcef4M92S14KtsK2AAhSlULL80cJ/UTrUggsZGdbKW6WcEqgpGNvmWlnAuRt8Ah042lPOanuqojtlb/V8yNfOTJdQ; + Expires=Fri, 14 Oct 2022 15:27:32 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=lJJF8WVSyyO/52pfeeEhnB5+kMGtvGeLJqYJERdLFL2VL0Bw1lKsUnpyiTqW5IK+W7rnpHpbDK4CiIyn4XTppQnr8JsFdd+6UXCgXy19QRP00rVo2dHYp6azfDbi7tlq7M3I55d6vLeCxrnmywzoy7qHNynDZ3NTRt+7xk84q5mr; + Expires=Fri, 14 Oct 2022 15:27:32 GMT; Path=/ + - AWSALBTGCORS=lJJF8WVSyyO/52pfeeEhnB5+kMGtvGeLJqYJERdLFL2VL0Bw1lKsUnpyiTqW5IK+W7rnpHpbDK4CiIyn4XTppQnr8JsFdd+6UXCgXy19QRP00rVo2dHYp6azfDbi7tlq7M3I55d6vLeCxrnmywzoy7qHNynDZ3NTRt+7xk84q5mr; + Expires=Fri, 14 Oct 2022 15:27:32 GMT; Path=/; SameSite=None; Secure + - csrftoken=HKg0d3pEayZg2WW9SQkDwQiJMB4F6SOOJcGgJpM9xO41lUqOf8R3rkbBltsYk419; + expires=Fri, 06 Oct 2023 15:27:33 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=5qypmosz2b5zzu5hqnypkxodparatj2f; expires=Fri, 21 Oct 2022 15:27:33 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/parameters/e82d20c4-b538-4e7c-82eb-de8f9e11b38d/ + - https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/parameters/efe14499-0758-45a6-8057-148fc8fecd3d/ Vary: - Accept, Cookie, Origin Allow: @@ -392,11 +370,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/parameters/e82d20c4-b538-4e7c-82eb-de8f9e11b38d/","id":"e82d20c4-b538-4e7c-82eb-de8f9e11b38d","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T17:38:57.310521Z","modified_at":"2022-01-04T17:38:57.310521Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 17:38:57 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/parameters/efe14499-0758-45a6-8057-148fc8fecd3d/","id":"efe14499-0758-45a6-8057-148fc8fecd3d","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:27:33.631840Z","modified_at":"2022-10-07T15:27:33.631840Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:27:33 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/templates/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/templates/ body: encoding: UTF-8 string: '{"name":"tone","body":"tmpl1 {{one}}"}' @@ -404,7 +382,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -417,30 +395,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:38:58 GMT + - Fri, 07 Oct 2022 15:27:35 GMT Content-Type: - application/json Content-Length: - - '771' + - '820' Connection: - keep-alive Set-Cookie: - - AWSALB=lwtOBvQcZ+atAATyOjKCk9s+lSesKYO6FC0TtvhZVguKq3trDTtmxOkOH2CMeRZmiRHo+PHC5LTxNoq/GfDqv8DY5iUrlG7vd8nVFqBcRiiOa8gJLNBtNRjUGige; - Expires=Tue, 11 Jan 2022 17:38:57 GMT; Path=/ - - AWSALBCORS=lwtOBvQcZ+atAATyOjKCk9s+lSesKYO6FC0TtvhZVguKq3trDTtmxOkOH2CMeRZmiRHo+PHC5LTxNoq/GfDqv8DY5iUrlG7vd8nVFqBcRiiOa8gJLNBtNRjUGige; - Expires=Tue, 11 Jan 2022 17:38:57 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=8AofusKwG1sOzMTUbxwYFDxQyKNFlnt2zYUeRf4GuPTdFleIHQFAqjgTnzT0Auzk+5ImY50eLo4bz0HHffXLSjF0dQV3Dom/Xt26sct75X4/xwoYM7JfpoL+hJVNmMU7ugX6gavuNn5TVtPVDnGuJq2ca6eDo38PCUUAP20jhgAa; - Expires=Tue, 11 Jan 2022 17:38:57 GMT; Path=/ - - AWSALBTGCORS=8AofusKwG1sOzMTUbxwYFDxQyKNFlnt2zYUeRf4GuPTdFleIHQFAqjgTnzT0Auzk+5ImY50eLo4bz0HHffXLSjF0dQV3Dom/Xt26sct75X4/xwoYM7JfpoL+hJVNmMU7ugX6gavuNn5TVtPVDnGuJq2ca6eDo38PCUUAP20jhgAa; - Expires=Tue, 11 Jan 2022 17:38:57 GMT; Path=/; SameSite=None; Secure - - csrftoken=kSbJu51ug0bKQReQpHrpDcFrtY0cEZW4oZ8UbTI7rERLuvWdbBmiEaMsDTT9QTQD; - expires=Tue, 03 Jan 2023 17:38:58 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=0e6i00tqa8qgmi3s0uihbczjxrkp72kq; expires=Tue, 18 Jan 2022 17:38:58 + - AWSALB=92m7TYt7WSZYbOV/7eFqqMoKdNbdkEJsdSJHPkInBLkO8mt8wA/degohKGAo9KoIV8B1uymavVqo2EjlPZNmBPfXmxWH3GaL4C/2qMN23fQ6USEq9/7/gEL27V1j; + Expires=Fri, 14 Oct 2022 15:27:33 GMT; Path=/ + - AWSALBCORS=92m7TYt7WSZYbOV/7eFqqMoKdNbdkEJsdSJHPkInBLkO8mt8wA/degohKGAo9KoIV8B1uymavVqo2EjlPZNmBPfXmxWH3GaL4C/2qMN23fQ6USEq9/7/gEL27V1j; + Expires=Fri, 14 Oct 2022 15:27:33 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=+6nvbq95udEUY+YUjUtYJl3Jp6J/EPSGJc9gWq/WhxV2pt4+j7gDSoZmS2wKhzvOeUGQ78H1MDK3N5NMMt0ie4mSL+eRWTFXXXAciZ1bYPc9vsV2i1kkqvKAK3wSe07EyakebEYk4DFswh9bBgVyFJnDbVmLZBflINXv9AOOsOKa; + Expires=Fri, 14 Oct 2022 15:27:33 GMT; Path=/ + - AWSALBTGCORS=+6nvbq95udEUY+YUjUtYJl3Jp6J/EPSGJc9gWq/WhxV2pt4+j7gDSoZmS2wKhzvOeUGQ78H1MDK3N5NMMt0ie4mSL+eRWTFXXXAciZ1bYPc9vsV2i1kkqvKAK3wSe07EyakebEYk4DFswh9bBgVyFJnDbVmLZBflINXv9AOOsOKa; + Expires=Fri, 14 Oct 2022 15:27:33 GMT; Path=/; SameSite=None; Secure + - csrftoken=09XgHorViC9f2cEbcpknX8lb3bRjYfGkTF5tQ8OajJqBp1rxTuhw4NL0c4IgXLo9; + expires=Fri, 06 Oct 2023 15:27:35 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ddfn66ao0dkv8pc86n48p8g7wxdfa1hu; expires=Fri, 21 Oct 2022 15:27:35 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/templates/82dab5c3-e8c9-4242-99d3-77e108a821a5/ + - https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/templates/d9099f00-2d7f-41b7-9244-ff6f7bb6e4d0/ Vary: - Accept, Cookie, Origin Allow: @@ -455,12 +433,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/templates/82dab5c3-e8c9-4242-99d3-77e108a821a5/","id":"82dab5c3-e8c9-4242-99d3-77e108a821a5","name":"tone","description":"","evaluated":false,"body":"tmpl1 - {{one}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/parameters/7fa5a701-f607-45cd-b950-65d88a95bfd7/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:38:58.034824Z","modified_at":"2022-01-04T17:38:58.034824Z","parameters":["https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/parameters/7fa5a701-f607-45cd-b950-65d88a95bfd7/"],"references":[],"referenced_by":[]}' - recorded_at: Tue, 04 Jan 2022 17:38:58 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/templates/d9099f00-2d7f-41b7-9244-ff6f7bb6e4d0/","id":"d9099f00-2d7f-41b7-9244-ff6f7bb6e4d0","name":"tone","description":"","evaluated":false,"body":"tmpl1 + {{one}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/parameters/f0e3ed7c-c0f9-4646-ba3f-eb6041c017c0/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:27:35.461250Z","modified_at":"2022-10-07T15:27:35.461250Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/parameters/f0e3ed7c-c0f9-4646-ba3f-eb6041c017c0/"],"references":[],"referenced_by":[]}' + recorded_at: Fri, 07 Oct 2022 15:27:35 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/templates/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/templates/ body: encoding: UTF-8 string: '{"name":"ttwo","body":"tmpl2 {{two}}"}' @@ -468,7 +446,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -481,30 +459,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:38:58 GMT + - Fri, 07 Oct 2022 15:27:36 GMT Content-Type: - application/json Content-Length: - - '771' + - '820' Connection: - keep-alive Set-Cookie: - - AWSALB=7kV115wog7Gw8wklhGIzK7Z94GiZxIA7rZvSRtkJvA7mhHawCtajDHYkQRn+cTg08eEpdYcfNApInBXW41LTjHTkSVJ1k6CvILrUlCwMuCI8NL8Kw8Y6fjIRlvej; - Expires=Tue, 11 Jan 2022 17:38:58 GMT; Path=/ - - AWSALBCORS=7kV115wog7Gw8wklhGIzK7Z94GiZxIA7rZvSRtkJvA7mhHawCtajDHYkQRn+cTg08eEpdYcfNApInBXW41LTjHTkSVJ1k6CvILrUlCwMuCI8NL8Kw8Y6fjIRlvej; - Expires=Tue, 11 Jan 2022 17:38:58 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=roKroW0TP9bexM7wGKH/a/aJb5WmgAwAvJTNxR02hKh9B0DcYKfxj652vgIcFLe3o5vNmkHcagBP9bxJAKq2p2+H5ek9ygQpVis8GQI8gvAR1FWcIv2EZtUUHPuqeMt9jZEsD3GypYPLG4d/AnV+wkMef/R+8c2zHCEPLmVDZJiB; - Expires=Tue, 11 Jan 2022 17:38:58 GMT; Path=/ - - AWSALBTGCORS=roKroW0TP9bexM7wGKH/a/aJb5WmgAwAvJTNxR02hKh9B0DcYKfxj652vgIcFLe3o5vNmkHcagBP9bxJAKq2p2+H5ek9ygQpVis8GQI8gvAR1FWcIv2EZtUUHPuqeMt9jZEsD3GypYPLG4d/AnV+wkMef/R+8c2zHCEPLmVDZJiB; - Expires=Tue, 11 Jan 2022 17:38:58 GMT; Path=/; SameSite=None; Secure - - csrftoken=vS6na7NSrvGYquPhDhrioZZaJODZomCzTOc3G3ArVfQ7CXR2bYsZbY6ig02v70Mg; - expires=Tue, 03 Jan 2023 17:38:58 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=dazticffkv0a50x25s7ufkqcw0i3ir53; expires=Tue, 18 Jan 2022 17:38:58 + - AWSALB=xTSWMl8SoG7+Pg6adAvQ7/KCVWlU6WbIkTYsu4GKFcNeLnBGFCXns3RTJzSS+8mEOqpaT26oxTcsGBfxXj4B7aDD9cU56oX4KuiDEBAfWgdGsNbSx7UQnLi5wyoK; + Expires=Fri, 14 Oct 2022 15:27:35 GMT; Path=/ + - AWSALBCORS=xTSWMl8SoG7+Pg6adAvQ7/KCVWlU6WbIkTYsu4GKFcNeLnBGFCXns3RTJzSS+8mEOqpaT26oxTcsGBfxXj4B7aDD9cU56oX4KuiDEBAfWgdGsNbSx7UQnLi5wyoK; + Expires=Fri, 14 Oct 2022 15:27:35 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=+rB+V/qoecYmRQrscjAEV4pQCzSnZue4s0P1TveWNeWDabVLDeDxw+3GglccTCPl7AYeYtn8ds7d0rwVQAzH28Z7NDa/hP738+GAnMbrAhLnoXi3iqiR+w2xTEBFctQi6qSVazX8tZvRwBSxfqoI+8kf8R1VrZbYhyow1ZivC+FK; + Expires=Fri, 14 Oct 2022 15:27:35 GMT; Path=/ + - AWSALBTGCORS=+rB+V/qoecYmRQrscjAEV4pQCzSnZue4s0P1TveWNeWDabVLDeDxw+3GglccTCPl7AYeYtn8ds7d0rwVQAzH28Z7NDa/hP738+GAnMbrAhLnoXi3iqiR+w2xTEBFctQi6qSVazX8tZvRwBSxfqoI+8kf8R1VrZbYhyow1ZivC+FK; + Expires=Fri, 14 Oct 2022 15:27:35 GMT; Path=/; SameSite=None; Secure + - csrftoken=v5VIcqjwYjrhIa0wun1LJFlgap5u7sSLQtXkS5m1h5DrXYAsv2aRqxCY3nmsUwNb; + expires=Fri, 06 Oct 2023 15:27:36 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=mdol1xnth8gcu07j53ggr7ct3q8flwtp; expires=Fri, 21 Oct 2022 15:27:36 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/templates/3ef5fcd0-d5dd-41fe-a25e-75f2341a83de/ + - https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/templates/ae478ef0-ea65-4a0b-b039-4257bb392566/ Vary: - Accept, Cookie, Origin Allow: @@ -519,12 +497,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/templates/3ef5fcd0-d5dd-41fe-a25e-75f2341a83de/","id":"3ef5fcd0-d5dd-41fe-a25e-75f2341a83de","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 - {{two}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/parameters/e82d20c4-b538-4e7c-82eb-de8f9e11b38d/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:38:58.623041Z","modified_at":"2022-01-04T17:38:58.623041Z","parameters":["https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/parameters/e82d20c4-b538-4e7c-82eb-de8f9e11b38d/"],"references":[],"referenced_by":[]}' - recorded_at: Tue, 04 Jan 2022 17:38:58 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/templates/ae478ef0-ea65-4a0b-b039-4257bb392566/","id":"ae478ef0-ea65-4a0b-b039-4257bb392566","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 + {{two}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/parameters/efe14499-0758-45a6-8057-148fc8fecd3d/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:27:36.754216Z","modified_at":"2022-10-07T15:27:36.754216Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/parameters/efe14499-0758-45a6-8057-148fc8fecd3d/"],"references":[],"referenced_by":[]}' + recorded_at: Fri, 07 Oct 2022 15:27:36 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/templates/ + uri: https://api.staging.cloudtruth.io/api/v1/environments/ body: encoding: US-ASCII string: '' @@ -532,7 +510,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -545,25 +523,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:38:59 GMT + - Fri, 07 Oct 2022 15:27:38 GMT Content-Type: - application/json Content-Length: - - '1595' + - '2085' Connection: - keep-alive Set-Cookie: - - AWSALB=GueCg4OmY1FnAtkmFDOaQ9aHiVmAGMiW6KaedOXawGvPTOq1gS9bG74Vbs7rXLGSIqEr1CRdbGgL/qwSNRd/ACAlKfsIJAJLC5jnxCjGKsNi9hijHMFCw9/p3XYR; - Expires=Tue, 11 Jan 2022 17:38:58 GMT; Path=/ - - AWSALBCORS=GueCg4OmY1FnAtkmFDOaQ9aHiVmAGMiW6KaedOXawGvPTOq1gS9bG74Vbs7rXLGSIqEr1CRdbGgL/qwSNRd/ACAlKfsIJAJLC5jnxCjGKsNi9hijHMFCw9/p3XYR; - Expires=Tue, 11 Jan 2022 17:38:58 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=cw1gkje0dykyqCRhQ5OiRx+hleKW14Ku34+NlCRglfICY1fW2WjFsR2Y91dmhQHHVodw3PAIFKFmo0SGtFWUxMwGilAJjx6Aha2JjhUiKrB08YxPtNWj+xE5PJI0AwH9ScQK/Hi8OKiZSiZ2qyrWJH+YvMt7vxEfy8KSfDKq7itQ; - Expires=Tue, 11 Jan 2022 17:38:58 GMT; Path=/ - - AWSALBTGCORS=cw1gkje0dykyqCRhQ5OiRx+hleKW14Ku34+NlCRglfICY1fW2WjFsR2Y91dmhQHHVodw3PAIFKFmo0SGtFWUxMwGilAJjx6Aha2JjhUiKrB08YxPtNWj+xE5PJI0AwH9ScQK/Hi8OKiZSiZ2qyrWJH+YvMt7vxEfy8KSfDKq7itQ; - Expires=Tue, 11 Jan 2022 17:38:58 GMT; Path=/; SameSite=None; Secure - - csrftoken=FmoZeVtW9SGJVsRR3nmhtA7uhMuhvnZgndmg2IplxG9LD0F9U3WXeqDFRKwdZ26w; - expires=Tue, 03 Jan 2023 17:38:59 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=oab8xc0ib9jfgusr0rjxn11euax52z7k; expires=Tue, 18 Jan 2022 17:38:59 + - AWSALB=cz7lfMAHcbv1BDDcmzE4UyGouYdFiv9sbX9pfQ/8FVoYpl8O7TaLnMzEvN3zvT0tbtB4NPgr9JbDizHAHX5UrlrB2cMX6P5wauzDT6FnotqbHKbl0IFYB31u7mWA; + Expires=Fri, 14 Oct 2022 15:27:36 GMT; Path=/ + - AWSALBCORS=cz7lfMAHcbv1BDDcmzE4UyGouYdFiv9sbX9pfQ/8FVoYpl8O7TaLnMzEvN3zvT0tbtB4NPgr9JbDizHAHX5UrlrB2cMX6P5wauzDT6FnotqbHKbl0IFYB31u7mWA; + Expires=Fri, 14 Oct 2022 15:27:36 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=oo4nD73kdD1zmC0h8Wo5oUgg/NPkNJS+MmGnWrIFLOJMB/oOzh1ixUZ2yUBsY58rcbTCgxwW8A+WdqYqHOf0aQtbpyCPuXNF2UXP6RBc8SFob6UBCGKKUB5IXiV+IPrY1OStNGTuh8C6O6NXdblAUSdmz4/hPpTJ+wOGjlhqfcJs; + Expires=Fri, 14 Oct 2022 15:27:36 GMT; Path=/ + - AWSALBTGCORS=oo4nD73kdD1zmC0h8Wo5oUgg/NPkNJS+MmGnWrIFLOJMB/oOzh1ixUZ2yUBsY58rcbTCgxwW8A+WdqYqHOf0aQtbpyCPuXNF2UXP6RBc8SFob6UBCGKKUB5IXiV+IPrY1OStNGTuh8C6O6NXdblAUSdmz4/hPpTJ+wOGjlhqfcJs; + Expires=Fri, 14 Oct 2022 15:27:36 GMT; Path=/; SameSite=None; Secure + - csrftoken=UD9w3PxwJ3NeP3m18Rbg3cvbCh4XWefvMGRssNTybK4lfbXbisy0endhHCTo0Tlx; + expires=Fri, 06 Oct 2023 15:27:38 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=lohay59b010rrubc1dtqp5630vf7kso7; expires=Fri, 21 Oct 2022 15:27:38 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -581,8 +559,73 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/templates/82dab5c3-e8c9-4242-99d3-77e108a821a5/","id":"82dab5c3-e8c9-4242-99d3-77e108a821a5","name":"tone","description":"","evaluated":false,"body":"tmpl1 - {{one}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/parameters/7fa5a701-f607-45cd-b950-65d88a95bfd7/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:38:58.034824Z","modified_at":"2022-01-04T17:38:58.034824Z","parameters":["https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/parameters/7fa5a701-f607-45cd-b950-65d88a95bfd7/"],"references":[],"referenced_by":[]},{"url":"https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/templates/3ef5fcd0-d5dd-41fe-a25e-75f2341a83de/","id":"3ef5fcd0-d5dd-41fe-a25e-75f2341a83de","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 - {{two}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/parameters/e82d20c4-b538-4e7c-82eb-de8f9e11b38d/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:38:58.623041Z","modified_at":"2022-01-04T17:38:58.623041Z","parameters":["https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/parameters/e82d20c4-b538-4e7c-82eb-de8f9e11b38d/"],"references":[],"referenced_by":[]}]}' - recorded_at: Tue, 04 Jan 2022 17:38:59 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","id":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","name":"default","description":"Default + environment, base for all environments.","parent":null,"children":["https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/"],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.112161Z","modified_at":"2022-06-02T17:13:09.641786Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","id":"8f2e37b9-b429-4987-bb85-abd24bd67274","name":"development","description":"Development + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.123839Z","modified_at":"2022-06-02T17:11:55.123839Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","id":"0663ac09-5883-452b-bc1a-00e3347fece5","name":"production","description":"Production + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.145580Z","modified_at":"2022-06-02T17:11:55.145580Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/","id":"fc970cc2-c24f-427d-9c7a-70acde9f1b64","name":"staging","description":"Staging + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.134547Z","modified_at":"2022-06-02T17:11:55.134547Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:27:38 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/templates/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76 + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 15:27:39 GMT + Content-Type: + - application/json + Content-Length: + - '1693' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=cGYBX5/wCHdL16ggHPYUowdvB1A0AVe8ziggvg3NwnbNXDhYA1RsPwiKXuxNAiTl3vfffZJtiVZvJ7wUohYLcoQ3akuJYhYltE1Ahi2xhHixBq7L+lSNMwhIEplx; + Expires=Fri, 14 Oct 2022 15:27:38 GMT; Path=/ + - AWSALBCORS=cGYBX5/wCHdL16ggHPYUowdvB1A0AVe8ziggvg3NwnbNXDhYA1RsPwiKXuxNAiTl3vfffZJtiVZvJ7wUohYLcoQ3akuJYhYltE1Ahi2xhHixBq7L+lSNMwhIEplx; + Expires=Fri, 14 Oct 2022 15:27:38 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=WI8pLuGnoIwPMqVZp8OAHOxxG0dTqZJ8FrdnuEkN+cQ22qfJsPeEsCqGuhD5D4q6T+N8j7UVBjMYOlGvOcS5QoS/tJ/5DcU34N5uS1r7DBHMN9dWm5/tVH2mbTfZZMACVj3XnMb4KbralPkj5TSh1F4+Bf0wqEdVuQ8hu1JbgQes; + Expires=Fri, 14 Oct 2022 15:27:38 GMT; Path=/ + - AWSALBTGCORS=WI8pLuGnoIwPMqVZp8OAHOxxG0dTqZJ8FrdnuEkN+cQ22qfJsPeEsCqGuhD5D4q6T+N8j7UVBjMYOlGvOcS5QoS/tJ/5DcU34N5uS1r7DBHMN9dWm5/tVH2mbTfZZMACVj3XnMb4KbralPkj5TSh1F4+Bf0wqEdVuQ8hu1JbgQes; + Expires=Fri, 14 Oct 2022 15:27:38 GMT; Path=/; SameSite=None; Secure + - csrftoken=SP2h5TSsr9uutp8ZEsPR9FlVSRN6rDTEcTHt5xypFyBvSfrEEdBylPeyZcFlNOQb; + expires=Fri, 06 Oct 2023 15:27:39 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=y1qx1hmx0qk3vltmv7mvyex5dq4wgw8m; expires=Fri, 21 Oct 2022 15:27:39 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/templates/d9099f00-2d7f-41b7-9244-ff6f7bb6e4d0/","id":"d9099f00-2d7f-41b7-9244-ff6f7bb6e4d0","name":"tone","description":"","evaluated":false,"body":"tmpl1 + {{one}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/parameters/f0e3ed7c-c0f9-4646-ba3f-eb6041c017c0/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:27:35.461250Z","modified_at":"2022-10-07T15:27:35.461250Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/parameters/f0e3ed7c-c0f9-4646-ba3f-eb6041c017c0/"],"references":[],"referenced_by":[]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/templates/ae478ef0-ea65-4a0b-b039-4257bb392566/","id":"ae478ef0-ea65-4a0b-b039-4257bb392566","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 + {{two}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/parameters/efe14499-0758-45a6-8057-148fc8fecd3d/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:27:36.754216Z","modified_at":"2022-10-07T15:27:36.754216Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/parameters/efe14499-0758-45a6-8057-148fc8fecd3d/"],"references":[],"referenced_by":[]}]}' + recorded_at: Fri, 07 Oct 2022 15:27:39 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_templates/memoizes_templates_.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_templates/memoizes_templates_.yml index 355902f..7786a87 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_templates/memoizes_templates_.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_templates/memoizes_templates_.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -10,7 +10,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -23,25 +23,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:39:00 GMT + - Fri, 07 Oct 2022 15:27:41 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=RSupIAcazaTz4E1Bt5AaH3AReEYO3eYIMCJMp+y1VSIiphHc10oWJKIBhlZq9PAsuIkEYMWWZbV7/m1kxzc64EFVBNMAliTRHzQkfV6x63XwDbqTVXivVVzFD7aX; - Expires=Tue, 11 Jan 2022 17:38:59 GMT; Path=/ - - AWSALBCORS=RSupIAcazaTz4E1Bt5AaH3AReEYO3eYIMCJMp+y1VSIiphHc10oWJKIBhlZq9PAsuIkEYMWWZbV7/m1kxzc64EFVBNMAliTRHzQkfV6x63XwDbqTVXivVVzFD7aX; - Expires=Tue, 11 Jan 2022 17:38:59 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=hRPFN5uOayW2e0sKjNJ0zNRUQeWGORcNUulvOUdaVEPb/AngOtZ1znYTxC8dg3Bn+NXF2EZ2ue+eH2JnmXcgrgPqGB+/I2to+aRCMVK2gFuB+KhDu9AjSa7ZuEE/QOf+xcpu6ZXXIvRKhGsxrlex7LGD/6Z0kzshqsjTnRzeTO91; - Expires=Tue, 11 Jan 2022 17:38:59 GMT; Path=/ - - AWSALBTGCORS=hRPFN5uOayW2e0sKjNJ0zNRUQeWGORcNUulvOUdaVEPb/AngOtZ1znYTxC8dg3Bn+NXF2EZ2ue+eH2JnmXcgrgPqGB+/I2to+aRCMVK2gFuB+KhDu9AjSa7ZuEE/QOf+xcpu6ZXXIvRKhGsxrlex7LGD/6Z0kzshqsjTnRzeTO91; - Expires=Tue, 11 Jan 2022 17:38:59 GMT; Path=/; SameSite=None; Secure - - csrftoken=rkxmaJGwMnTNwCI7FIu6pPeSfU7PHHwV68QNRYZy8VPJJHZM1GT0sSxRlgpMyAM9; - expires=Tue, 03 Jan 2023 17:39:00 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=jj6j8xnqhnsg7tpnf4fsdqiw5vaep4pw; expires=Tue, 18 Jan 2022 17:39:00 + - AWSALB=nNq55AAUYs4DDKPKD4AhkZz9JSsa2EwkLHz/Jpm/dS52ix+7lEX0DUu2T2oIgPSIPJ3Gt505uDIQWKsXCeSDvFJHAYpiHQVcNuiuDylC9UifU2WB7NXSFiJRG6VY; + Expires=Fri, 14 Oct 2022 15:27:40 GMT; Path=/ + - AWSALBCORS=nNq55AAUYs4DDKPKD4AhkZz9JSsa2EwkLHz/Jpm/dS52ix+7lEX0DUu2T2oIgPSIPJ3Gt505uDIQWKsXCeSDvFJHAYpiHQVcNuiuDylC9UifU2WB7NXSFiJRG6VY; + Expires=Fri, 14 Oct 2022 15:27:40 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=OTJq1PzbDDaPlj+zacQhyn2PXRu0pwN5npWLl9PobfcwfpipSTDMsGDR3Io+Ja4xo0FqAXyV62sXR7rEinGwxPIbVCs1tyTmiCsDkmYLmk6ZmoAa3ZgnCrfaRNQK2QPr1GLxhL8h6/Ds+GCwZ20Oo+hJGDjws8oZwdyJxhF0VOQh; + Expires=Fri, 14 Oct 2022 15:27:40 GMT; Path=/ + - AWSALBTGCORS=OTJq1PzbDDaPlj+zacQhyn2PXRu0pwN5npWLl9PobfcwfpipSTDMsGDR3Io+Ja4xo0FqAXyV62sXR7rEinGwxPIbVCs1tyTmiCsDkmYLmk6ZmoAa3ZgnCrfaRNQK2QPr1GLxhL8h6/Ds+GCwZ20Oo+hJGDjws8oZwdyJxhF0VOQh; + Expires=Fri, 14 Oct 2022 15:27:40 GMT; Path=/; SameSite=None; Secure + - csrftoken=2SpCzkstqxWd5IioZdR0emAfAJEewndjnLLeZ4FdmfZmizjIQ9Vt8rll1ABj7xVi; + expires=Fri, 06 Oct 2023 15:27:41 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=r6be1f1qv0468vjues7wc9qcf8p66sn9; expires=Fri, 21 Oct 2022 15:27:41 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -59,23 +59,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/","id":"1ebeb8c6-969f-4618-b15b-dfe83d2650a3","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:38:55.596401Z","modified_at":"2022-01-04T17:38:58.640697Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:39:00 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/","id":"b5db2a9c-f4ed-4345-b3fd-1a7bd536a614","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:27:29.030611Z","modified_at":"2022-10-07T15:27:29.030611Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:27:41 GMT - request: method: delete - uri: https://api.cloudtruth.io/api/v1/projects/1ebeb8c6-969f-4618-b15b-dfe83d2650a3/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/b5db2a9c-f4ed-4345-b3fd-1a7bd536a614/ body: encoding: US-ASCII string: '' @@ -83,7 +72,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Authorization: - Api-Key Accept-Encoding: @@ -96,23 +85,23 @@ http_interactions: message: No Content headers: Date: - - Tue, 04 Jan 2022 17:39:00 GMT + - Fri, 07 Oct 2022 15:27:43 GMT Content-Length: - '0' Connection: - keep-alive Set-Cookie: - - AWSALB=Sg5mGxe2FxcrDFwoHO75RP8x0TfY6sE2PwOpzuGvIO1Z58DBXdBYhNHxSTgwAQnJAH7yQafgvGXlvZv+aWKrUjQ0Q/dhfYhGVBd35GcHwx8lXUWYWy73ujuo9l8F; - Expires=Tue, 11 Jan 2022 17:39:00 GMT; Path=/ - - AWSALBCORS=Sg5mGxe2FxcrDFwoHO75RP8x0TfY6sE2PwOpzuGvIO1Z58DBXdBYhNHxSTgwAQnJAH7yQafgvGXlvZv+aWKrUjQ0Q/dhfYhGVBd35GcHwx8lXUWYWy73ujuo9l8F; - Expires=Tue, 11 Jan 2022 17:39:00 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=rjKqpNNluQnVzTAA0+gNNOaXVeyBpZilvrNoN2Hd43xvC2P1ojD3fiO372FOTlac5iimacQUlPN7FwGIP9GkJdTYmM4+MU1ABEntkcWHUb6EtPuDtOgro5f4czJGOJRNlSNbixY/5Vx7hjEDCSmXPFAKIWH1WXmhmflWNjqDlXTo; - Expires=Tue, 11 Jan 2022 17:39:00 GMT; Path=/ - - AWSALBTGCORS=rjKqpNNluQnVzTAA0+gNNOaXVeyBpZilvrNoN2Hd43xvC2P1ojD3fiO372FOTlac5iimacQUlPN7FwGIP9GkJdTYmM4+MU1ABEntkcWHUb6EtPuDtOgro5f4czJGOJRNlSNbixY/5Vx7hjEDCSmXPFAKIWH1WXmhmflWNjqDlXTo; - Expires=Tue, 11 Jan 2022 17:39:00 GMT; Path=/; SameSite=None; Secure - - csrftoken=WMJolo1dFlcuAgrdRtlVTRXxmECTjTg1tDitz0s91utDFLqbYDdmAT0n5mS4R1Vd; - expires=Tue, 03 Jan 2023 17:39:00 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=nzi49ivj8qpjas5so1bjjqibh8c1k35j; expires=Tue, 18 Jan 2022 17:39:00 + - AWSALB=vguX6FNR0H6WeTxLymp7u6tF6xjU43GTBaFshTlmKirobxiglldnO2vimDC4m9cytazxqzb72W02zYUqBtqJXAsniCI0sBUs0EWwRdNMcE3aYYQnMoQDVvkGD2g/; + Expires=Fri, 14 Oct 2022 15:27:41 GMT; Path=/ + - AWSALBCORS=vguX6FNR0H6WeTxLymp7u6tF6xjU43GTBaFshTlmKirobxiglldnO2vimDC4m9cytazxqzb72W02zYUqBtqJXAsniCI0sBUs0EWwRdNMcE3aYYQnMoQDVvkGD2g/; + Expires=Fri, 14 Oct 2022 15:27:41 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=1JZ2L/zCIByAgLkm+d4h+aujJjMU7MvirRecpyXmSXXk8cvS2//awIy3C94HVWbj2onQn8tg3/v96X6A+y+Twq4A9eS57t1jT2oTw3IjKICzHKNbIaof/t4kukh0+h32VoeQUOap0ng8vc3lYpfM3PGQc6BIpSprtIn9e+CMCB/Z; + Expires=Fri, 14 Oct 2022 15:27:41 GMT; Path=/ + - AWSALBTGCORS=1JZ2L/zCIByAgLkm+d4h+aujJjMU7MvirRecpyXmSXXk8cvS2//awIy3C94HVWbj2onQn8tg3/v96X6A+y+Twq4A9eS57t1jT2oTw3IjKICzHKNbIaof/t4kukh0+h32VoeQUOap0ng8vc3lYpfM3PGQc6BIpSprtIn9e+CMCB/Z; + Expires=Fri, 14 Oct 2022 15:27:41 GMT; Path=/; SameSite=None; Secure + - csrftoken=buBvJsyrMJgdf5TwJ1VSGO0DXqGe4g54QeyoMWi3kWsoBsgdhD0dHhJGSi13H1DE; + expires=Fri, 06 Oct 2023 15:27:43 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=6hg0yw7bj6fo6scsp2e96qfykdbhan3q; expires=Fri, 21 Oct 2022 15:27:43 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -131,10 +120,10 @@ http_interactions: body: encoding: UTF-8 string: '' - recorded_at: Tue, 04 Jan 2022 17:39:00 GMT + recorded_at: Fri, 07 Oct 2022 15:27:43 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: UTF-8 string: '{"name":"TestProject"}' @@ -142,7 +131,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -155,30 +144,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:01 GMT + - Fri, 07 Oct 2022 15:27:44 GMT Content-Type: - application/json Content-Length: - - '304' + - '365' Connection: - keep-alive Set-Cookie: - - AWSALB=Cghxy0JgSmKDCV4ThGUkCZ0TE59YsGUGt9T/gW9BEJovCQb1vGr0sqmsfMUeTtnG2AOi6idWbDk35GOw7tzufj2JhgTtsnER3Hx1qkYXiZ1t9VF+tUyNQRfa8tRa; - Expires=Tue, 11 Jan 2022 17:39:00 GMT; Path=/ - - AWSALBCORS=Cghxy0JgSmKDCV4ThGUkCZ0TE59YsGUGt9T/gW9BEJovCQb1vGr0sqmsfMUeTtnG2AOi6idWbDk35GOw7tzufj2JhgTtsnER3Hx1qkYXiZ1t9VF+tUyNQRfa8tRa; - Expires=Tue, 11 Jan 2022 17:39:00 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=ZwdRygZeC9EtGi2U9/lcGxmHXIf2L+QdAGFWiGsUGiI19N+QHeyUeoh0RGuHPmCUuikWrdB79+n2vTUU9IUMT7JZf/Q6ZWdP7tB0XCCVyri/BAD4JnPTQcyjianShzE55gZD1/vkZSSgOF0Q0y0mVfJnbFt/cXL708GebhdRwL2n; - Expires=Tue, 11 Jan 2022 17:39:00 GMT; Path=/ - - AWSALBTGCORS=ZwdRygZeC9EtGi2U9/lcGxmHXIf2L+QdAGFWiGsUGiI19N+QHeyUeoh0RGuHPmCUuikWrdB79+n2vTUU9IUMT7JZf/Q6ZWdP7tB0XCCVyri/BAD4JnPTQcyjianShzE55gZD1/vkZSSgOF0Q0y0mVfJnbFt/cXL708GebhdRwL2n; - Expires=Tue, 11 Jan 2022 17:39:00 GMT; Path=/; SameSite=None; Secure - - csrftoken=SZDTU4vz5JKGdyTwuPeSo0Z2jtPsotuVOxDS5ycBb1XkUpjtm133aGMfcKoLa3nL; - expires=Tue, 03 Jan 2023 17:39:01 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=fhyy6qnojigd4yxb2yci666rlcrybj4d; expires=Tue, 18 Jan 2022 17:39:01 + - AWSALB=t0E1hsS1wBE8/O25v3ZY0LjcRO/TBMPh4Xt/T7CSyKy3iRStedeulmqe0o7zjDYjqeFPe7NyFOBfHgKlH+QMWRpX0nbMvjnIfwN47BqIHAZoMQw3jPhO0uV4vwVK; + Expires=Fri, 14 Oct 2022 15:27:43 GMT; Path=/ + - AWSALBCORS=t0E1hsS1wBE8/O25v3ZY0LjcRO/TBMPh4Xt/T7CSyKy3iRStedeulmqe0o7zjDYjqeFPe7NyFOBfHgKlH+QMWRpX0nbMvjnIfwN47BqIHAZoMQw3jPhO0uV4vwVK; + Expires=Fri, 14 Oct 2022 15:27:43 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=zF8ptCnaXwQ7/mx2SaXruInKvyoJOY4SZ0PGZYcwFdtThbQiO/++clGFkcKY4MKlqGluLEEvdVL/nQ6d1UA/sd52BtoMSmviAeQkDopmOQGPijID3+rzCOKM5VHrkqtNaEsdijGmGuAnQU3pgADS2RSyoIdYqOSoZBBWvf9+wqVW; + Expires=Fri, 14 Oct 2022 15:27:43 GMT; Path=/ + - AWSALBTGCORS=zF8ptCnaXwQ7/mx2SaXruInKvyoJOY4SZ0PGZYcwFdtThbQiO/++clGFkcKY4MKlqGluLEEvdVL/nQ6d1UA/sd52BtoMSmviAeQkDopmOQGPijID3+rzCOKM5VHrkqtNaEsdijGmGuAnQU3pgADS2RSyoIdYqOSoZBBWvf9+wqVW; + Expires=Fri, 14 Oct 2022 15:27:43 GMT; Path=/; SameSite=None; Secure + - csrftoken=8ipO9yOWSSY0XPtKk1NRuH8XwryBz3xHuqY14iDxoZoFpYv37Y3xA9Ex04cIaFpH; + expires=Fri, 06 Oct 2023 15:27:44 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=9bfznc7lep2gsbyakaly2yazcos0j6me; expires=Fri, 21 Oct 2022 15:27:44 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/ + - https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/ Vary: - Accept, Cookie, Origin Allow: @@ -193,11 +182,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/","id":"89a4202e-3507-4c4c-8e65-eb460bcaa381","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:39:00.998431Z","modified_at":"2022-01-04T17:39:00.998431Z"}' - recorded_at: Tue, 04 Jan 2022 17:39:00 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/","id":"b9310e1d-71ee-4a57-8e23-6ec7dd11a635","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:27:44.354379Z","modified_at":"2022-10-07T15:27:44.354379Z"}' + recorded_at: Fri, 07 Oct 2022 15:27:44 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -205,7 +194,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -218,25 +207,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:39:01 GMT + - Fri, 07 Oct 2022 15:27:45 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=DshMifEoK3abN52rDx/6cwc/IVyK8VVQqxSbSc8ruUdS3020cCjEx/Fu6fKWZxeLwALc65N5TBCX3g7LdPVsEYrNT7qsQ7kMHZGwolQv8BkCO1PWKtoxfoYGcSQ/; - Expires=Tue, 11 Jan 2022 17:39:01 GMT; Path=/ - - AWSALBCORS=DshMifEoK3abN52rDx/6cwc/IVyK8VVQqxSbSc8ruUdS3020cCjEx/Fu6fKWZxeLwALc65N5TBCX3g7LdPVsEYrNT7qsQ7kMHZGwolQv8BkCO1PWKtoxfoYGcSQ/; - Expires=Tue, 11 Jan 2022 17:39:01 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=8h/fmy+v1w7fBhJSHuv9N8AmiAsWMlupcCubN1VuYh3FMEkYnLOxXboRXuJKRKbZIdJeWbDxNnviXyzCUhz1rV5UFO3LMh73+R7eVZ/YgSrcdQBgCW882iDoJ/zvB0A+78GL+zOyiaHCFr4TWt/2oSH7ZQzUfC/XjGMAJLx9KTfq; - Expires=Tue, 11 Jan 2022 17:39:01 GMT; Path=/ - - AWSALBTGCORS=8h/fmy+v1w7fBhJSHuv9N8AmiAsWMlupcCubN1VuYh3FMEkYnLOxXboRXuJKRKbZIdJeWbDxNnviXyzCUhz1rV5UFO3LMh73+R7eVZ/YgSrcdQBgCW882iDoJ/zvB0A+78GL+zOyiaHCFr4TWt/2oSH7ZQzUfC/XjGMAJLx9KTfq; - Expires=Tue, 11 Jan 2022 17:39:01 GMT; Path=/; SameSite=None; Secure - - csrftoken=vggM5nISoziL3YnJ3xX8spxFrSc8nFn8NUDllJNye7y98YPkwgOU8LnN9VWv2QEv; - expires=Tue, 03 Jan 2023 17:39:01 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=fufbclop5dsh2o6hkyjj9o8au3m3lxim; expires=Tue, 18 Jan 2022 17:39:01 + - AWSALB=35px03Qhd9vVgkM6G9MBeAnZu3xoJ/RYvINbSY/QcykxIJJUItG0BfWB18AT21CAZt98e0G9D+dVdKm3OspHFT/D/jmq8rjTwfxObfBZ10Z0hBiY8VLlyHhwEFiG; + Expires=Fri, 14 Oct 2022 15:27:44 GMT; Path=/ + - AWSALBCORS=35px03Qhd9vVgkM6G9MBeAnZu3xoJ/RYvINbSY/QcykxIJJUItG0BfWB18AT21CAZt98e0G9D+dVdKm3OspHFT/D/jmq8rjTwfxObfBZ10Z0hBiY8VLlyHhwEFiG; + Expires=Fri, 14 Oct 2022 15:27:44 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=3jU1z5lvYYv4G1bgcrUHou8lSZeECz5dxmk8TNRGZGfU4rf6ihGRfSrEtoTs9vaSp6c8ttdKLSjFxSJUYwO+Rbroippvq+e9AZmbBPsiw3hzDpTGQSkkhBp4VkTjdYZ/o+aOPhH6sFkAbUjn+pUwjWp1oNL+YIpM5t9f9cqVj0eH; + Expires=Fri, 14 Oct 2022 15:27:44 GMT; Path=/ + - AWSALBTGCORS=3jU1z5lvYYv4G1bgcrUHou8lSZeECz5dxmk8TNRGZGfU4rf6ihGRfSrEtoTs9vaSp6c8ttdKLSjFxSJUYwO+Rbroippvq+e9AZmbBPsiw3hzDpTGQSkkhBp4VkTjdYZ/o+aOPhH6sFkAbUjn+pUwjWp1oNL+YIpM5t9f9cqVj0eH; + Expires=Fri, 14 Oct 2022 15:27:44 GMT; Path=/; SameSite=None; Secure + - csrftoken=r73og5wQOcSGWXoXpyIjv81F6TGIQBuhI8frsMeA1ThUjxdAMpCqKSLGhZ4ydd6C; + expires=Fri, 06 Oct 2023 15:27:45 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=8xgilgvnjsr4awhj9p9ode4fjk9lkps3; expires=Fri, 21 Oct 2022 15:27:45 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -254,23 +243,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/","id":"89a4202e-3507-4c4c-8e65-eb460bcaa381","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:39:00.998431Z","modified_at":"2022-01-04T17:39:00.998431Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:39:01 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/","id":"b9310e1d-71ee-4a57-8e23-6ec7dd11a635","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:27:44.354379Z","modified_at":"2022-10-07T15:27:44.354379Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:27:45 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/parameters/ body: encoding: UTF-8 string: '{"name":"one","type":"string"}' @@ -278,7 +256,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -291,30 +269,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:02 GMT + - Fri, 07 Oct 2022 15:27:47 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=9roecWGg165YzX+VVhDK7ZL6j+Gdg/Bu4sKHuaSBG58EFgqQlJ5xMYX8yTJhOzbaaZzhJeVrtS8x1CHK+fxl30gfVZkFjU3FUJpblVigsO/lXbuitM/R+2VN91RG; - Expires=Tue, 11 Jan 2022 17:39:02 GMT; Path=/ - - AWSALBCORS=9roecWGg165YzX+VVhDK7ZL6j+Gdg/Bu4sKHuaSBG58EFgqQlJ5xMYX8yTJhOzbaaZzhJeVrtS8x1CHK+fxl30gfVZkFjU3FUJpblVigsO/lXbuitM/R+2VN91RG; - Expires=Tue, 11 Jan 2022 17:39:02 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=srjAc60keksU2TBTnEeUI9TkKtcWYHpIzPUDzWppQ+dj0iVym9gmtqFvndzz6BoTtQ+0H+Mhk/vjGAwwfEo1ap3HpZdmTdEmuY1VMQ1COpxQIkk4FtqtuWxzT7xvAknuFo5h3GDLSefbL3szVU1wBuYKFqfyGgvN1+jToVt1I61v; - Expires=Tue, 11 Jan 2022 17:39:02 GMT; Path=/ - - AWSALBTGCORS=srjAc60keksU2TBTnEeUI9TkKtcWYHpIzPUDzWppQ+dj0iVym9gmtqFvndzz6BoTtQ+0H+Mhk/vjGAwwfEo1ap3HpZdmTdEmuY1VMQ1COpxQIkk4FtqtuWxzT7xvAknuFo5h3GDLSefbL3szVU1wBuYKFqfyGgvN1+jToVt1I61v; - Expires=Tue, 11 Jan 2022 17:39:02 GMT; Path=/; SameSite=None; Secure - - csrftoken=hAdapANdt3559RugQ0BbEVOMIJ1calOheLE6VGH7nqVjWBcY8NqV90PESx8pUPmP; - expires=Tue, 03 Jan 2023 17:39:02 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=t57vvc6hz98ldowwza9ffn56fyfek8hf; expires=Tue, 18 Jan 2022 17:39:02 + - AWSALB=eb6nzhFqiWkPlr5ZpBxovpHC7YyP50fwcfuphcTPrYDf+I6+PXc4VQf1cZm81D2Hnvn19NRVJeRSU/2OhDaAz7xp/RiZh//z8ZsYRCZMfjv3cKQwGCE8nybYmdw4; + Expires=Fri, 14 Oct 2022 15:27:45 GMT; Path=/ + - AWSALBCORS=eb6nzhFqiWkPlr5ZpBxovpHC7YyP50fwcfuphcTPrYDf+I6+PXc4VQf1cZm81D2Hnvn19NRVJeRSU/2OhDaAz7xp/RiZh//z8ZsYRCZMfjv3cKQwGCE8nybYmdw4; + Expires=Fri, 14 Oct 2022 15:27:45 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=sitlgnU9/S0yPy/SQy3cRX08JtNdlqiQQ0cLHx5UbH0EQ80I0HBNh7q4yp7yo1GDtQtFsZPNrteTdkI3ad29ghKLDa3OISbVUNHqqGCkZIwLXmqxckNWho9Ljl/LhilEkalfTQ8Cu4Z6DYg7ylmXnFQEW2tRlH8PyqC/5TgOvfcy; + Expires=Fri, 14 Oct 2022 15:27:45 GMT; Path=/ + - AWSALBTGCORS=sitlgnU9/S0yPy/SQy3cRX08JtNdlqiQQ0cLHx5UbH0EQ80I0HBNh7q4yp7yo1GDtQtFsZPNrteTdkI3ad29ghKLDa3OISbVUNHqqGCkZIwLXmqxckNWho9Ljl/LhilEkalfTQ8Cu4Z6DYg7ylmXnFQEW2tRlH8PyqC/5TgOvfcy; + Expires=Fri, 14 Oct 2022 15:27:45 GMT; Path=/; SameSite=None; Secure + - csrftoken=q0AJEwnqDrf4wFHnMBKTiSz9gLwBGdJN9zeVdKMnQDszAzx960y4Q0N4JdmZVBK6; + expires=Fri, 06 Oct 2023 15:27:47 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=0p3ydkea1e16d3lcmqxmmk6hifhfn6kb; expires=Fri, 21 Oct 2022 15:27:47 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/parameters/9b55a0bc-4698-493d-b944-68c416c9c574/ + - https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/parameters/56d44c11-8011-41af-820b-a413b305f146/ Vary: - Accept, Cookie, Origin Allow: @@ -329,11 +307,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/parameters/9b55a0bc-4698-493d-b944-68c416c9c574/","id":"9b55a0bc-4698-493d-b944-68c416c9c574","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T17:39:02.710705Z","modified_at":"2022-01-04T17:39:02.710705Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:02 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/parameters/56d44c11-8011-41af-820b-a413b305f146/","id":"56d44c11-8011-41af-820b-a413b305f146","name":"one","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:27:47.099318Z","modified_at":"2022-10-07T15:27:47.099318Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:27:47 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/parameters/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/parameters/ body: encoding: UTF-8 string: '{"name":"two","type":"string"}' @@ -341,7 +319,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -354,30 +332,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:03 GMT + - Fri, 07 Oct 2022 15:27:49 GMT Content-Type: - application/json Content-Length: - - '1357' + - '967' Connection: - keep-alive Set-Cookie: - - AWSALB=nED2ZtLmU2Pg6nxsf6++2Kl7Sj2TlOjGbqQnvEX1hAkwM1C/3egu5+6EB6g6ooZPkJRub5KIss3dLG1j2iRTliX4kHczT4dF77Jt7r1uqw7N2PVlZEsH+UHf0Hmh; - Expires=Tue, 11 Jan 2022 17:39:02 GMT; Path=/ - - AWSALBCORS=nED2ZtLmU2Pg6nxsf6++2Kl7Sj2TlOjGbqQnvEX1hAkwM1C/3egu5+6EB6g6ooZPkJRub5KIss3dLG1j2iRTliX4kHczT4dF77Jt7r1uqw7N2PVlZEsH+UHf0Hmh; - Expires=Tue, 11 Jan 2022 17:39:02 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=C5+ip09DhJDKTRQBO4QCfG/JvMOH1JFxeDK9qzKu9nW3R0Ih/wetWG9DwOOw4q5GN/5qaMf/stQJEhpHMRYm+vowqfUQRds0/SYNR9kgPW3ELicZjPbO58/4iM6Z8waxzBAuzHcZ7tP4V7nxCaRsIF48BykknHp6OBWYwJkTKV4D; - Expires=Tue, 11 Jan 2022 17:39:02 GMT; Path=/ - - AWSALBTGCORS=C5+ip09DhJDKTRQBO4QCfG/JvMOH1JFxeDK9qzKu9nW3R0Ih/wetWG9DwOOw4q5GN/5qaMf/stQJEhpHMRYm+vowqfUQRds0/SYNR9kgPW3ELicZjPbO58/4iM6Z8waxzBAuzHcZ7tP4V7nxCaRsIF48BykknHp6OBWYwJkTKV4D; - Expires=Tue, 11 Jan 2022 17:39:02 GMT; Path=/; SameSite=None; Secure - - csrftoken=MwWjkKncvqz6FvS5XO9ojelbOUhPtdWbi5Vpt0FyyZX0Bfy5mkPUNT5LHrAYmWvc; - expires=Tue, 03 Jan 2023 17:39:03 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=24poovteniz0s22c7wfop9m5o5eaxug6; expires=Tue, 18 Jan 2022 17:39:03 + - AWSALB=73eGJdHSup2jrJtWsUWvmxGk9fZFnIH5AGSFrO4JMN4AJOVv+Q0GvKY6y93fMEmlv0NiAV+Fh5KNPUTNryaFp+ueSO6k61W3cyTw75hI3PoG519B4I9EYsv2cUGo; + Expires=Fri, 14 Oct 2022 15:27:47 GMT; Path=/ + - AWSALBCORS=73eGJdHSup2jrJtWsUWvmxGk9fZFnIH5AGSFrO4JMN4AJOVv+Q0GvKY6y93fMEmlv0NiAV+Fh5KNPUTNryaFp+ueSO6k61W3cyTw75hI3PoG519B4I9EYsv2cUGo; + Expires=Fri, 14 Oct 2022 15:27:47 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=EQRWv5vf/bmGISbYsDVqfRyG+GXcJJAMU8Orwzcts7f/sAQ67sJYs6gFup7a7rusDPvMkuiEzhmWwwXGFcToR/W2fL1ZneUxfnBvGXATAAiWos0ah40A+n10GU2zKpjTJ6zNdKmA3Ms2/+htqwWrxfm3MZNLA11dDr4VZfqckTEU; + Expires=Fri, 14 Oct 2022 15:27:47 GMT; Path=/ + - AWSALBTGCORS=EQRWv5vf/bmGISbYsDVqfRyG+GXcJJAMU8Orwzcts7f/sAQ67sJYs6gFup7a7rusDPvMkuiEzhmWwwXGFcToR/W2fL1ZneUxfnBvGXATAAiWos0ah40A+n10GU2zKpjTJ6zNdKmA3Ms2/+htqwWrxfm3MZNLA11dDr4VZfqckTEU; + Expires=Fri, 14 Oct 2022 15:27:47 GMT; Path=/; SameSite=None; Secure + - csrftoken=kc6C4deiUP86zraFFAFBh36yOwAZJ8gqwO1NjcJyKhhxQyA9ZtusG6vI2botqi8a; + expires=Fri, 06 Oct 2023 15:27:48 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=e3dvcpaa0yhdqdc2ybl0b0v04c6fr0pv; expires=Fri, 21 Oct 2022 15:27:48 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/parameters/5e5a4514-2ff5-49fc-9b2f-fda9f0bac582/ + - https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/parameters/a6cec5b3-29cb-4c32-b062-aee847a85e98/ Vary: - Accept, Cookie, Origin Allow: @@ -392,11 +370,11 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/parameters/5e5a4514-2ff5-49fc-9b2f-fda9f0bac582/","id":"5e5a4514-2ff5-49fc-9b2f-fda9f0bac582","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.cloudtruth.io/api/v1/environments/e8bc190d-0354-4e66-91c9-64501e501ec5/":null,"https://api.cloudtruth.io/api/v1/environments/c4de304d-5dd4-4a41-80ec-9a469f1aa4f5/":null,"https://api.cloudtruth.io/api/v1/environments/12b9c81b-9002-423b-9ca7-22cece646d07/":null,"https://api.cloudtruth.io/api/v1/environments/2281d9da-8376-4f45-baf2-372a71260dfa/":null,"https://api.cloudtruth.io/api/v1/environments/c99d6ab9-4674-4f76-bb43-da0b19124e18/":null,"https://api.cloudtruth.io/api/v1/environments/ef133a2e-3c9c-4229-a509-e56332baff40/":null,"https://api.cloudtruth.io/api/v1/environments/cde7cf9d-8bf2-46cb-9e97-dee9b99e4335/":null,"https://api.cloudtruth.io/api/v1/environments/e4399ff4-a962-451b-adfb-7e504ad6bb6d/":null,"https://api.cloudtruth.io/api/v1/environments/3afc0523-4722-4fa1-aaea-5d49beaa284d/":null},"created_at":"2022-01-04T17:39:03.283301Z","modified_at":"2022-01-04T17:39:03.283301Z","templates":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:03 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/parameters/a6cec5b3-29cb-4c32-b062-aee847a85e98/","id":"a6cec5b3-29cb-4c32-b062-aee847a85e98","name":"two","description":"","secret":false,"type":"string","rules":[],"project":"https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/","project_name":"TestProject","referencing_templates":[],"referencing_values":[],"values":{"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/":null,"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/":null,"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/":null,"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/":null},"overrides":null,"created_at":"2022-10-07T15:27:48.949498Z","modified_at":"2022-10-07T15:27:48.949498Z","templates":[]}' + recorded_at: Fri, 07 Oct 2022 15:27:48 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/templates/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/templates/ body: encoding: UTF-8 string: '{"name":"tone","body":"tmpl1 {{one}}"}' @@ -404,7 +382,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -417,30 +395,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:04 GMT + - Fri, 07 Oct 2022 15:27:50 GMT Content-Type: - application/json Content-Length: - - '771' + - '820' Connection: - keep-alive Set-Cookie: - - AWSALB=A0KGvQMjmVxL8DGaCGHeLrqcImRS/AOnOM4T67o8aJl0NmSEUElVZNBhN2sgGulbI9en6zvWAvSMjMr/ae2oECR3HVCXeyQjUSbIW8AYR6VTD1z+TwxxPeqqgQZ9; - Expires=Tue, 11 Jan 2022 17:39:03 GMT; Path=/ - - AWSALBCORS=A0KGvQMjmVxL8DGaCGHeLrqcImRS/AOnOM4T67o8aJl0NmSEUElVZNBhN2sgGulbI9en6zvWAvSMjMr/ae2oECR3HVCXeyQjUSbIW8AYR6VTD1z+TwxxPeqqgQZ9; - Expires=Tue, 11 Jan 2022 17:39:03 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=A9kdomFudG6KiDXAANHEDlXie+ZVQhRgYWcVBlYySp99KfMaZpQ6xYexkboAkVxbj/gfYrHeJhSAjcsF/NGJ2nl8LR/ymiFcfQWS5JYWKtzA0Qx8Q8Qfh1Dan2LMtErL5TDVE+FUfEdSDx0i20nWpkvj29pRe/uTqhqKQvj5rAcf; - Expires=Tue, 11 Jan 2022 17:39:03 GMT; Path=/ - - AWSALBTGCORS=A9kdomFudG6KiDXAANHEDlXie+ZVQhRgYWcVBlYySp99KfMaZpQ6xYexkboAkVxbj/gfYrHeJhSAjcsF/NGJ2nl8LR/ymiFcfQWS5JYWKtzA0Qx8Q8Qfh1Dan2LMtErL5TDVE+FUfEdSDx0i20nWpkvj29pRe/uTqhqKQvj5rAcf; - Expires=Tue, 11 Jan 2022 17:39:03 GMT; Path=/; SameSite=None; Secure - - csrftoken=kpIRJK0erkX3WMAAyjgaubOAtKSLZo0IF0QQncBihnGnNsqgLIQ9VaKHRLJ9LLOL; - expires=Tue, 03 Jan 2023 17:39:04 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=udr0lbi5s6mzpqf8y49uojj484h4bs53; expires=Tue, 18 Jan 2022 17:39:04 + - AWSALB=AfexvFl1+3as6YgZdd1jgkLVj/VjWmB1M808a9NFESFNchbWVA7MBuNW0On3ysG1VwuFju0TT8TQRHJvVYDaHDoq8g7dt2HntX1tjlb1Ooj0RgGzKWF1BJ/fygVN; + Expires=Fri, 14 Oct 2022 15:27:49 GMT; Path=/ + - AWSALBCORS=AfexvFl1+3as6YgZdd1jgkLVj/VjWmB1M808a9NFESFNchbWVA7MBuNW0On3ysG1VwuFju0TT8TQRHJvVYDaHDoq8g7dt2HntX1tjlb1Ooj0RgGzKWF1BJ/fygVN; + Expires=Fri, 14 Oct 2022 15:27:49 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=boDsIyfsW2X0fMDVK32EHZcv5K4f8CeVkCGyjDgtMYpYIqB3dWrkB93dkx80NZMog6w/npbRqyx54pWNkDJe1z+5Kg+CbbXyR19RPaUvU4GiArscmj4OHKJ1Hqf9FwYFFA4x9zZ3kNCVJdWwbHXDWV+jLxvz2Wq807lzZlRHhDBQ; + Expires=Fri, 14 Oct 2022 15:27:49 GMT; Path=/ + - AWSALBTGCORS=boDsIyfsW2X0fMDVK32EHZcv5K4f8CeVkCGyjDgtMYpYIqB3dWrkB93dkx80NZMog6w/npbRqyx54pWNkDJe1z+5Kg+CbbXyR19RPaUvU4GiArscmj4OHKJ1Hqf9FwYFFA4x9zZ3kNCVJdWwbHXDWV+jLxvz2Wq807lzZlRHhDBQ; + Expires=Fri, 14 Oct 2022 15:27:49 GMT; Path=/; SameSite=None; Secure + - csrftoken=dhmrx7crosjh90LzF3PkslIvNWw8uxX7zrabeyqJcP3pEwhpyTxT7xnZyQMotcAL; + expires=Fri, 06 Oct 2023 15:27:50 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=yg5ic8w3k7dl0yr6zkukq08tvei65gh0; expires=Fri, 21 Oct 2022 15:27:50 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/templates/bcfd74ae-06d3-4229-9f34-a0408f012725/ + - https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/templates/2bc3e265-8676-424c-b235-d08bc1157579/ Vary: - Accept, Cookie, Origin Allow: @@ -455,12 +433,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/templates/bcfd74ae-06d3-4229-9f34-a0408f012725/","id":"bcfd74ae-06d3-4229-9f34-a0408f012725","name":"tone","description":"","evaluated":false,"body":"tmpl1 - {{one}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/parameters/9b55a0bc-4698-493d-b944-68c416c9c574/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:39:03.938291Z","modified_at":"2022-01-04T17:39:03.938291Z","parameters":["https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/parameters/9b55a0bc-4698-493d-b944-68c416c9c574/"],"references":[],"referenced_by":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:04 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/templates/2bc3e265-8676-424c-b235-d08bc1157579/","id":"2bc3e265-8676-424c-b235-d08bc1157579","name":"tone","description":"","evaluated":false,"body":"tmpl1 + {{one}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/parameters/56d44c11-8011-41af-820b-a413b305f146/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:27:50.652580Z","modified_at":"2022-10-07T15:27:50.652580Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/parameters/56d44c11-8011-41af-820b-a413b305f146/"],"references":[],"referenced_by":[]}' + recorded_at: Fri, 07 Oct 2022 15:27:50 GMT - request: method: post - uri: https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/templates/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/templates/ body: encoding: UTF-8 string: '{"name":"ttwo","body":"tmpl2 {{two}}"}' @@ -468,7 +446,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -481,30 +459,30 @@ http_interactions: message: Created headers: Date: - - Tue, 04 Jan 2022 17:39:04 GMT + - Fri, 07 Oct 2022 15:27:52 GMT Content-Type: - application/json Content-Length: - - '771' + - '820' Connection: - keep-alive Set-Cookie: - - AWSALB=BJ8+lVCXfzxEGciLNuvOSLD6WfWRG6eC9JYN7hfyzTH5BrycZ2KTV67pWDTxHeqhDIGpNqvwryWsZO63R0NvtrDPcu4gM3WLih1wbDntYJVcOURVT6rLtpeeIu9n; - Expires=Tue, 11 Jan 2022 17:39:04 GMT; Path=/ - - AWSALBCORS=BJ8+lVCXfzxEGciLNuvOSLD6WfWRG6eC9JYN7hfyzTH5BrycZ2KTV67pWDTxHeqhDIGpNqvwryWsZO63R0NvtrDPcu4gM3WLih1wbDntYJVcOURVT6rLtpeeIu9n; - Expires=Tue, 11 Jan 2022 17:39:04 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=5zRPVGfsoD5bHiaknz0L07HaUQ3tLCXVkHP4jyETn270Moi9jm/q/UO83TdT/5FDceEDysg93rWINMdWlXUBrgJF/1XWZh9qw/SATL5vm9Oij6amnFxR0arPVOfhALNgDWmNXot3/FSxdaySn//UVw8OWQRX7MBwYbfVitNWFO4Q; - Expires=Tue, 11 Jan 2022 17:39:04 GMT; Path=/ - - AWSALBTGCORS=5zRPVGfsoD5bHiaknz0L07HaUQ3tLCXVkHP4jyETn270Moi9jm/q/UO83TdT/5FDceEDysg93rWINMdWlXUBrgJF/1XWZh9qw/SATL5vm9Oij6amnFxR0arPVOfhALNgDWmNXot3/FSxdaySn//UVw8OWQRX7MBwYbfVitNWFO4Q; - Expires=Tue, 11 Jan 2022 17:39:04 GMT; Path=/; SameSite=None; Secure - - csrftoken=7aFR737LjRhrUduISfSSUEFpnxJruzPYSV6Lm4AP8cSCJ85bSKQ5H2XkV1M56X0v; - expires=Tue, 03 Jan 2023 17:39:04 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=zlz030a6m1h4rm7nc4kdpc2wtp6u2f6c; expires=Tue, 18 Jan 2022 17:39:04 + - AWSALB=FT2wU/djMm7E2yADr1xxZi/UD5HqmSFeue8vcbOnRu3SdIvZHMQ7p/4QqU8JzC7wrCs7N/Vp6igRRpgd3vA/1nqhqLV2IIa4FkLW3YlbYIDZg9hdmh8XPsMv47Jn; + Expires=Fri, 14 Oct 2022 15:27:50 GMT; Path=/ + - AWSALBCORS=FT2wU/djMm7E2yADr1xxZi/UD5HqmSFeue8vcbOnRu3SdIvZHMQ7p/4QqU8JzC7wrCs7N/Vp6igRRpgd3vA/1nqhqLV2IIa4FkLW3YlbYIDZg9hdmh8XPsMv47Jn; + Expires=Fri, 14 Oct 2022 15:27:50 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=xwIhX9CYS9Rjuxrh4ue5jZODtprc+lO3r7f6Csm2DU6QIwJCi6fUp05hbAIRs3Z/aETZuJYsQ+WQ8eyVBxpM1gxHvN/kEy9TMA044IvYcqGJDMYoU44VAmaT4KG2GVB8Q4UeBoNP+xZPFekXzEXeCvtvRufg8erS6tgD9SCi4leG; + Expires=Fri, 14 Oct 2022 15:27:50 GMT; Path=/ + - AWSALBTGCORS=xwIhX9CYS9Rjuxrh4ue5jZODtprc+lO3r7f6Csm2DU6QIwJCi6fUp05hbAIRs3Z/aETZuJYsQ+WQ8eyVBxpM1gxHvN/kEy9TMA044IvYcqGJDMYoU44VAmaT4KG2GVB8Q4UeBoNP+xZPFekXzEXeCvtvRufg8erS6tgD9SCi4leG; + Expires=Fri, 14 Oct 2022 15:27:50 GMT; Path=/; SameSite=None; Secure + - csrftoken=BnGjKNCMa5eSw9NE0pWdnqgjWx860Vtia8jouJqKKzUHWuCmoVS3aIJw3fncg3fk; + expires=Fri, 06 Oct 2023 15:27:52 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=xvfubbh94fsfmiegfpvs6fq7r4ouyvsa; expires=Fri, 21 Oct 2022 15:27:52 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn Location: - - https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/templates/eb1ff061-d84a-4bc5-a66d-82ffab10bb3d/ + - https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/templates/21260a54-630b-4413-bfa7-91b33f6f90fd/ Vary: - Accept, Cookie, Origin Allow: @@ -519,12 +497,12 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"url":"https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/templates/eb1ff061-d84a-4bc5-a66d-82ffab10bb3d/","id":"eb1ff061-d84a-4bc5-a66d-82ffab10bb3d","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 - {{two}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/parameters/5e5a4514-2ff5-49fc-9b2f-fda9f0bac582/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:39:04.551784Z","modified_at":"2022-01-04T17:39:04.551784Z","parameters":["https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/parameters/5e5a4514-2ff5-49fc-9b2f-fda9f0bac582/"],"references":[],"referenced_by":[]}' - recorded_at: Tue, 04 Jan 2022 17:39:04 GMT + string: '{"url":"https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/templates/21260a54-630b-4413-bfa7-91b33f6f90fd/","id":"21260a54-630b-4413-bfa7-91b33f6f90fd","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 + {{two}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/parameters/a6cec5b3-29cb-4c32-b062-aee847a85e98/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:27:52.085037Z","modified_at":"2022-10-07T15:27:52.085037Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/parameters/a6cec5b3-29cb-4c32-b062-aee847a85e98/"],"references":[],"referenced_by":[]}' + recorded_at: Fri, 07 Oct 2022 15:27:52 GMT - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/templates/ + uri: https://api.staging.cloudtruth.io/api/v1/environments/ body: encoding: US-ASCII string: '' @@ -532,7 +510,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -545,25 +523,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:39:05 GMT + - Fri, 07 Oct 2022 15:27:53 GMT Content-Type: - application/json Content-Length: - - '1595' + - '2085' Connection: - keep-alive Set-Cookie: - - AWSALB=V11vsw/yRLiWLfhvWt2GAt2ZCI+ABYRuDAJoGaWnXSIXAXofgnYuXmHct6H9QwiIyL33mb1sTIl4qNxq+gHB5GSEBtc/5kjc2+9dcBm+lBvV1/3LTG8WmgK/fxHA; - Expires=Tue, 11 Jan 2022 17:39:04 GMT; Path=/ - - AWSALBCORS=V11vsw/yRLiWLfhvWt2GAt2ZCI+ABYRuDAJoGaWnXSIXAXofgnYuXmHct6H9QwiIyL33mb1sTIl4qNxq+gHB5GSEBtc/5kjc2+9dcBm+lBvV1/3LTG8WmgK/fxHA; - Expires=Tue, 11 Jan 2022 17:39:04 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=NC8NkY5YHKcRsmBeb6RRFSJUzDcZu2/AejtWY2AsRG7ypNzL98mkM+HhYAFM2tycKvusMYeOt0SSUXOa09cNGIDqMVZucU5jOv8gh6BGz9KTu0meIstD9F1OpxFQvADIzoWXPNOjN+fgoro0MhxSi1OgNQ0d2+nAuEThsrejnNhY; - Expires=Tue, 11 Jan 2022 17:39:04 GMT; Path=/ - - AWSALBTGCORS=NC8NkY5YHKcRsmBeb6RRFSJUzDcZu2/AejtWY2AsRG7ypNzL98mkM+HhYAFM2tycKvusMYeOt0SSUXOa09cNGIDqMVZucU5jOv8gh6BGz9KTu0meIstD9F1OpxFQvADIzoWXPNOjN+fgoro0MhxSi1OgNQ0d2+nAuEThsrejnNhY; - Expires=Tue, 11 Jan 2022 17:39:04 GMT; Path=/; SameSite=None; Secure - - csrftoken=RFB2IFyl3lxJzjaKew6mF0sj3hzBes3UVgsPihTAEINGoO3r6zdaOzWosjNcpRRb; - expires=Tue, 03 Jan 2023 17:39:05 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=996iku8o7ooxqa7y1kvkpyza1sdylxe0; expires=Tue, 18 Jan 2022 17:39:05 + - AWSALB=TaxcT9gwcFpfGruodH6HjIlroDgn9bWGqBfA9iD066hY0ThMG6FAJ2uiDzE1Dr0uR+AHsfWSS969cOy3QZYnSnE6iKHDaEmyQKus/HefNyv8GpkawoFm+ejsBBWj; + Expires=Fri, 14 Oct 2022 15:27:52 GMT; Path=/ + - AWSALBCORS=TaxcT9gwcFpfGruodH6HjIlroDgn9bWGqBfA9iD066hY0ThMG6FAJ2uiDzE1Dr0uR+AHsfWSS969cOy3QZYnSnE6iKHDaEmyQKus/HefNyv8GpkawoFm+ejsBBWj; + Expires=Fri, 14 Oct 2022 15:27:52 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=xI9qS7PyKzKAKQwyKF1Uzc63GBfFY4OkG2uq1SHu3lk1aooFA3NPXWKJr0LL9E4w+0lI1Kb2miZgr3GVdZXEuKYMKbFXA5hKksJqDtRK16TOvAgNYwP8Sx7i85mMPdB9NEIYpNdnctB0pET+r07DnHS4ZCJPT7mwzXzqT5EO1LwM; + Expires=Fri, 14 Oct 2022 15:27:52 GMT; Path=/ + - AWSALBTGCORS=xI9qS7PyKzKAKQwyKF1Uzc63GBfFY4OkG2uq1SHu3lk1aooFA3NPXWKJr0LL9E4w+0lI1Kb2miZgr3GVdZXEuKYMKbFXA5hKksJqDtRK16TOvAgNYwP8Sx7i85mMPdB9NEIYpNdnctB0pET+r07DnHS4ZCJPT7mwzXzqT5EO1LwM; + Expires=Fri, 14 Oct 2022 15:27:52 GMT; Path=/; SameSite=None; Secure + - csrftoken=antbtmep86tKatEtMdBq6tI9eAF6nObN03V2rCJXEtMykFi8efzqlZHYT0d6FHAZ; + expires=Fri, 06 Oct 2023 15:27:53 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=oxq61q72xsdo8itt61ayluoqi0vlog10; expires=Fri, 21 Oct 2022 15:27:53 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -581,8 +559,73 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/templates/bcfd74ae-06d3-4229-9f34-a0408f012725/","id":"bcfd74ae-06d3-4229-9f34-a0408f012725","name":"tone","description":"","evaluated":false,"body":"tmpl1 - {{one}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/parameters/9b55a0bc-4698-493d-b944-68c416c9c574/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:39:03.938291Z","modified_at":"2022-01-04T17:39:03.938291Z","parameters":["https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/parameters/9b55a0bc-4698-493d-b944-68c416c9c574/"],"references":[],"referenced_by":[]},{"url":"https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/templates/eb1ff061-d84a-4bc5-a66d-82ffab10bb3d/","id":"eb1ff061-d84a-4bc5-a66d-82ffab10bb3d","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 - {{two}}","referenced_parameters":["https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/parameters/5e5a4514-2ff5-49fc-9b2f-fda9f0bac582/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-01-04T17:39:04.551784Z","modified_at":"2022-01-04T17:39:04.551784Z","parameters":["https://api.cloudtruth.io/api/v1/projects/89a4202e-3507-4c4c-8e65-eb460bcaa381/parameters/5e5a4514-2ff5-49fc-9b2f-fda9f0bac582/"],"references":[],"referenced_by":[]}]}' - recorded_at: Tue, 04 Jan 2022 17:39:05 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","id":"1c8d41fa-6cba-4bc4-8154-e41acf2e8d76","name":"default","description":"Default + environment, base for all environments.","parent":null,"children":["https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/"],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.112161Z","modified_at":"2022-06-02T17:13:09.641786Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/8f2e37b9-b429-4987-bb85-abd24bd67274/","id":"8f2e37b9-b429-4987-bb85-abd24bd67274","name":"development","description":"Development + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.123839Z","modified_at":"2022-06-02T17:11:55.123839Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/0663ac09-5883-452b-bc1a-00e3347fece5/","id":"0663ac09-5883-452b-bc1a-00e3347fece5","name":"production","description":"Production + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.145580Z","modified_at":"2022-06-02T17:11:55.145580Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/environments/fc970cc2-c24f-427d-9c7a-70acde9f1b64/","id":"fc970cc2-c24f-427d-9c7a-70acde9f1b64","name":"staging","description":"Staging + deployment environment.","parent":"https://api.staging.cloudtruth.io/api/v1/environments/1c8d41fa-6cba-4bc4-8154-e41acf2e8d76/","children":[],"access_controlled":false,"role":null,"created_at":"2022-06-02T17:11:55.134547Z","modified_at":"2022-06-02T17:11:55.134547Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:27:53 GMT +- request: + method: get + uri: https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/templates/?environment=1c8d41fa-6cba-4bc4-8154-e41acf2e8d76 + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/1.2.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Fri, 07 Oct 2022 15:27:55 GMT + Content-Type: + - application/json + Content-Length: + - '1693' + Connection: + - keep-alive + Set-Cookie: + - AWSALB=NnuCpR7dRAlbBSEaFcLHnAn/0lkAga5mAOslM2dgq6TvsE+IyNHPhwpLiSJ4lbvm75a1xnUd0mbyHEsam7iyX1f/6J1tfcmlVvFbJfJodQdfYpBotlvKTo3zHx7w; + Expires=Fri, 14 Oct 2022 15:27:53 GMT; Path=/ + - AWSALBCORS=NnuCpR7dRAlbBSEaFcLHnAn/0lkAga5mAOslM2dgq6TvsE+IyNHPhwpLiSJ4lbvm75a1xnUd0mbyHEsam7iyX1f/6J1tfcmlVvFbJfJodQdfYpBotlvKTo3zHx7w; + Expires=Fri, 14 Oct 2022 15:27:53 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=OAECm2GumV/JNSVoj8SdiO4hdMEC+/zgVIksFJ+989hNhd6v8SImZG8YDKRAtPvoTq0wuXGmKbegQe9ScuePXL+xUqbsmSi1yzYcUyQVdxemNnIKuI3jiVJp1318eCnZGAR4sG8rwC3CQgjvMyGBhok8ZUQHiZ+cl3WI1zcG5o4F; + Expires=Fri, 14 Oct 2022 15:27:53 GMT; Path=/ + - AWSALBTGCORS=OAECm2GumV/JNSVoj8SdiO4hdMEC+/zgVIksFJ+989hNhd6v8SImZG8YDKRAtPvoTq0wuXGmKbegQe9ScuePXL+xUqbsmSi1yzYcUyQVdxemNnIKuI3jiVJp1318eCnZGAR4sG8rwC3CQgjvMyGBhok8ZUQHiZ+cl3WI1zcG5o4F; + Expires=Fri, 14 Oct 2022 15:27:53 GMT; Path=/; SameSite=None; Secure + - csrftoken=Z1vqI9i9YWJQEyMmRBSscBHTzVvmbl4jKghYDGmg1YsoXpjhmAn05Dp0et5BjPcz; + expires=Fri, 06 Oct 2023 15:27:55 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=szk3a6atw5smyrueuxm3s072ptle28pt; expires=Fri, 21 Oct 2022 15:27:55 + GMT; Max-Age=1209600; Path=/; Secure + Server: + - gunicorn + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Cross-Origin-Opener-Policy: + - same-origin + body: + encoding: UTF-8 + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/templates/2bc3e265-8676-424c-b235-d08bc1157579/","id":"2bc3e265-8676-424c-b235-d08bc1157579","name":"tone","description":"","evaluated":false,"body":"tmpl1 + {{one}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/parameters/56d44c11-8011-41af-820b-a413b305f146/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:27:50.652580Z","modified_at":"2022-10-07T15:27:50.652580Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/parameters/56d44c11-8011-41af-820b-a413b305f146/"],"references":[],"referenced_by":[]},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/templates/21260a54-630b-4413-bfa7-91b33f6f90fd/","id":"21260a54-630b-4413-bfa7-91b33f6f90fd","name":"ttwo","description":"","evaluated":false,"body":"tmpl2 + {{two}}","referenced_projects":[],"referenced_parameters":["https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/parameters/a6cec5b3-29cb-4c32-b062-aee847a85e98/"],"referenced_templates":[],"referencing_templates":[],"referencing_values":[],"has_secret":false,"created_at":"2022-10-07T15:27:52.085037Z","modified_at":"2022-10-07T15:27:52.085037Z","parameters":["https://api.staging.cloudtruth.io/api/v1/projects/b9310e1d-71ee-4a57-8e23-6ec7dd11a635/parameters/a6cec5b3-29cb-4c32-b062-aee847a85e98/"],"references":[],"referenced_by":[]}]}' + recorded_at: Fri, 07 Oct 2022 15:27:55 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/validate_async/does_api_requests_concurrently.yml b/spec/fixtures/vcr/Kubetruth_CtApi/validate_async/does_api_requests_concurrently.yml index 73af96e..13cf17a 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/validate_async/does_api_requests_concurrently.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/validate_async/does_api_requests_concurrently.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://api.cloudtruth.io/api/v1/projects/ + uri: https://api.staging.cloudtruth.io/api/v1/projects/ body: encoding: US-ASCII string: '' @@ -10,7 +10,7 @@ http_interactions: Content-Type: - application/json User-Agent: - - kubetruth/1.1.0 + - kubetruth/1.2.0 Accept: - application/json Authorization: @@ -23,25 +23,25 @@ http_interactions: message: OK headers: Date: - - Tue, 04 Jan 2022 17:39:36 GMT + - Fri, 07 Oct 2022 15:29:06 GMT Content-Type: - application/json Content-Length: - - '7795' + - '805' Connection: - keep-alive Set-Cookie: - - AWSALB=jVSJITV4bFTcxX2uAVVquAhN8io09EsPSuh3nKqKHfa6QrwSFqdIAwmca3kafpO8znuODTg1AwN3L1tpkDXQRaH9cPgxTcOXtpNJt+aZjPOpm4aDDdqG1S+H8RJx; - Expires=Tue, 11 Jan 2022 17:39:35 GMT; Path=/ - - AWSALBCORS=jVSJITV4bFTcxX2uAVVquAhN8io09EsPSuh3nKqKHfa6QrwSFqdIAwmca3kafpO8znuODTg1AwN3L1tpkDXQRaH9cPgxTcOXtpNJt+aZjPOpm4aDDdqG1S+H8RJx; - Expires=Tue, 11 Jan 2022 17:39:35 GMT; Path=/; SameSite=None; Secure - - AWSALBTG=vO5FXiauYmgv/E5FIQpZ66bsxoyxBUZcLLZzO75p3SQrnzjqD3SvrpZnEy8iZvWNHi2xVkxpYWf4GDTKCjHVzO16G5s3hY4kdz4MU1SKlUk6m7pyZsZpa66YummtJnGekEYHE36dStlJ9fdv/3J0oSxXDzCj6sxY9WOY1S2zx0eQ; - Expires=Tue, 11 Jan 2022 17:39:35 GMT; Path=/ - - AWSALBTGCORS=vO5FXiauYmgv/E5FIQpZ66bsxoyxBUZcLLZzO75p3SQrnzjqD3SvrpZnEy8iZvWNHi2xVkxpYWf4GDTKCjHVzO16G5s3hY4kdz4MU1SKlUk6m7pyZsZpa66YummtJnGekEYHE36dStlJ9fdv/3J0oSxXDzCj6sxY9WOY1S2zx0eQ; - Expires=Tue, 11 Jan 2022 17:39:35 GMT; Path=/; SameSite=None; Secure - - csrftoken=EAsgvDY6FtAy7S9wOhnZ2tmpv733GDTg2wKRIhHLEl4cuKNbuv58jVBVxskGzTjD; - expires=Tue, 03 Jan 2023 17:39:36 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=wg7q02wltcx3qnsslj38ucckirh1makq; expires=Tue, 18 Jan 2022 17:39:36 + - AWSALB=7uUab8smoeFVsKaWWtrH0hs6GxBTxlm4XdTrb+gtUw7EelBy/yPZDx76fjD4SCsFe3YGT6P6tZ1tMa//SpEMy/mB9wWlikWsFl/obDXUOAVkBrhvnuRTHKq5No/d; + Expires=Fri, 14 Oct 2022 15:29:04 GMT; Path=/ + - AWSALBCORS=7uUab8smoeFVsKaWWtrH0hs6GxBTxlm4XdTrb+gtUw7EelBy/yPZDx76fjD4SCsFe3YGT6P6tZ1tMa//SpEMy/mB9wWlikWsFl/obDXUOAVkBrhvnuRTHKq5No/d; + Expires=Fri, 14 Oct 2022 15:29:04 GMT; Path=/; SameSite=None; Secure + - AWSALBTG=vmj5o0nuFv+JCtsj1t/mNfYU4YssYIiXFLBLh72GD3/0yu6YP9d/B8vDujElQIgLTMa8OZQMGOmwCDXjb4ovrTNX+oWkZr+G7x4bCOBWJk03TkhwHp1+qJvsGbd9lkWrcKIALcV3DM9f4G0DAdBLPt3WOU2+PiUYPjxTvn2Yr065; + Expires=Fri, 14 Oct 2022 15:29:04 GMT; Path=/ + - AWSALBTGCORS=vmj5o0nuFv+JCtsj1t/mNfYU4YssYIiXFLBLh72GD3/0yu6YP9d/B8vDujElQIgLTMa8OZQMGOmwCDXjb4ovrTNX+oWkZr+G7x4bCOBWJk03TkhwHp1+qJvsGbd9lkWrcKIALcV3DM9f4G0DAdBLPt3WOU2+PiUYPjxTvn2Yr065; + Expires=Fri, 14 Oct 2022 15:29:04 GMT; Path=/; SameSite=None; Secure + - csrftoken=uPvfscpmewLZ4NDP7HrEuVLo9zAuKlm64X1vUjDBQYuUiGfB4OvuBM59x6Ye5i5R; + expires=Fri, 06 Oct 2023 15:29:06 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=duog5lm6pkat7569kl3ovr5uxl5ubwpg; expires=Fri, 21 Oct 2022 15:29:06 GMT; Max-Age=1209600; Path=/; Secure Server: - gunicorn @@ -59,18 +59,7 @@ http_interactions: - same-origin body: encoding: UTF-8 - string: '{"count":24,"next":null,"previous":null,"results":[{"url":"https://api.cloudtruth.io/api/v1/projects/1a7b786e-9c62-4258-aef2-6cfd75c41a59/","id":"1a7b786e-9c62-4258-aef2-6cfd75c41a59","name":"cfdemo","description":"Configuration - used to demo a CloudFormation prototype integration","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:05:26.661951Z","modified_at":"2021-11-23T23:08:12.562939Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4fe2fe3c-c663-41af-8d63-ec5527a621c0/","id":"4fe2fe3c-c663-41af-8d63-ec5527a621c0","name":"common","description":"Shared - across all projects","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:22:47.273990Z","modified_at":"2021-07-26T18:45:24.199158Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/dcb265f5-ce89-4e00-8b28-7ce873747b97/","id":"dcb265f5-ce89-4e00-8b28-7ce873747b97","name":"common-service","description":"The - config common across just services","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:07.189252Z","modified_at":"2021-07-26T18:46:23.320973Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/43817861-4ddf-45c1-9e76-bac6d1e02b32/","id":"43817861-4ddf-45c1-9e76-bac6d1e02b32","name":"ct-templates","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-14T20:01:19.851851Z","modified_at":"2021-12-15T14:24:08.275465Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/8f3c29e6-3383-496f-a8e9-26dc6f25eb3c/","id":"8f3c29e6-3383-496f-a8e9-26dc6f25eb3c","name":"default","description":"The - auto-generated default project.","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:25.911923Z","modified_at":"2021-07-26T18:46:34.255479Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5/","id":"daf9dcaa-9b5d-42fe-8fc3-3a69cfcf4dc5","name":"deploy","description":"Configuration - needed for the deploy process from CI","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-21T20:24:38.629815Z","modified_at":"2021-07-26T18:46:51.707890Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/616c209c-2b67-46a3-819a-8a954e96b1d2/","id":"616c209c-2b67-46a3-819a-8a954e96b1d2","name":"deploypatchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T15:14:28.525748Z","modified_at":"2022-01-04T16:21:49.168463Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/244cec03-28c2-47cc-85ae-303bda5ba6cf/","id":"244cec03-28c2-47cc-85ae-303bda5ba6cf","name":"deploytest","description":"test - the ability for kubetruth apply a deployment","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-19T13:36:42.635514Z","modified_at":"2021-12-16T20:48:25.446523Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/f7fbefb5-a083-483d-bc33-131065854a06/","id":"f7fbefb5-a083-483d-bc33-131065854a06","name":"filetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-27T18:06:21.251281Z","modified_at":"2021-08-27T18:59:13.539538Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4f48a492-bc67-4de1-a9f7-797396dc902c/","id":"4f48a492-bc67-4de1-a9f7-797396dc902c","name":"foo/bar","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-10T17:25:34.967111Z","modified_at":"2021-12-10T17:25:34.967111Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/de0e3a04-a86c-4ad2-b358-08a1743813ce/","id":"de0e3a04-a86c-4ad2-b358-08a1743813ce","name":"inflatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-06T15:38:52.135503Z","modified_at":"2021-08-06T15:38:52.135524Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/530170b8-2193-4b37-a572-72860891740a/","id":"530170b8-2193-4b37-a572-72860891740a","name":"k8s-myapp-nginx","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-09-08T15:25:27.550873Z","modified_at":"2021-09-10T13:58:16.939366Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/5e2e8c45-fd14-4611-8e75-d825b97e01e8/","id":"5e2e8c45-fd14-4611-8e75-d825b97e01e8","name":"kubetruth","description":"Configuration - for managing kubetruth","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:17:57.275843Z","modified_at":"2021-12-17T16:07:38.099674Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/bbed6195-07ff-4e74-b127-e6536205ef7e/","id":"bbed6195-07ff-4e74-b127-e6536205ef7e","name":"MyFirstProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-08T22:19:07.676923Z","modified_at":"2021-12-08T22:19:12.439357Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/4ba891ba-1d4f-4313-bb7a-cd49450d51c0/","id":"4ba891ba-1d4f-4313-bb7a-cd49450d51c0","name":"patchtest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-12-17T14:55:52.939739Z","modified_at":"2021-12-17T16:00:41.608029Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/55dbd4b2-4bfd-4aef-a716-f52e9f8a5393/","id":"55dbd4b2-4bfd-4aef-a716-f52e9f8a5393","name":"proj1","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:30.277549Z","modified_at":"2021-11-09T22:21:29.583977Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/a68551e4-1877-4556-8ecc-8402d676e037/","id":"a68551e4-1877-4556-8ecc-8402d676e037","name":"proj2","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-10-26T18:14:35.215943Z","modified_at":"2021-10-26T18:14:38.871073Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/1703265e-03d4-4e75-8b94-713d34afda67/","id":"1703265e-03d4-4e75-8b94-713d34afda67","name":"service","description":"The - config for the backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:02.643856Z","modified_at":"2021-07-26T18:49:56.904159Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/75732f0b-c0c9-4479-9293-f87bc5a8969c/","id":"75732f0b-c0c9-4479-9293-f87bc5a8969c","name":"service-demo1","description":"The - config for demo backend service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:04.391855Z","modified_at":"2021-07-26T18:49:58.780103Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cb32e767-36b2-4bdc-836f-a85014837a93/","id":"cb32e767-36b2-4bdc-836f-a85014837a93","name":"service-demo2","description":"The - config for demo2 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:26.748760Z","modified_at":"2021-07-26T18:50:23.926198Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/2913f375-83ab-46b2-aeff-4158cd4d35c7/","id":"2913f375-83ab-46b2-aeff-4158cd4d35c7","name":"service-demo3","description":"The - config for demo3 service","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:29.507805Z","modified_at":"2021-07-26T18:50:25.974144Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/9d70bf39-7e52-46f2-87d9-6ed29f627b6b/","id":"9d70bf39-7e52-46f2-87d9-6ed29f627b6b","name":"templatetest","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-08-04T14:29:09.639496Z","modified_at":"2021-12-08T18:48:35.926701Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/6da58cf2-2e90-47b7-bb43-5b58bcb5967f/","id":"6da58cf2-2e90-47b7-bb43-5b58bcb5967f","name":"TestProject","description":"","dependents":[],"depends_on":null,"pushes":[],"created_at":"2022-01-04T17:39:26.597326Z","modified_at":"2022-01-04T17:39:34.114452Z"},{"url":"https://api.cloudtruth.io/api/v1/projects/cd9c51fc-1328-4fbe-beac-333627afa8ab/","id":"cd9c51fc-1328-4fbe-beac-333627afa8ab","name":"web","description":"The - config for the web frontend","dependents":[],"depends_on":null,"pushes":[],"created_at":"2021-07-23T16:18:31.102443Z","modified_at":"2021-07-26T18:50:28.022395Z"}]}' - recorded_at: Tue, 04 Jan 2022 17:39:36 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://api.staging.cloudtruth.io/api/v1/projects/1e0926d8-bc4d-44d4-8c7d-e712e655a231/","id":"1e0926d8-bc4d-44d4-8c7d-e712e655a231","name":"MyFirstProject","description":"Your + first project.","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-06-02T17:11:55.098134Z","modified_at":"2022-06-02T17:11:55.098134Z"},{"url":"https://api.staging.cloudtruth.io/api/v1/projects/0950deb9-ced5-49dd-89e5-83d62929bbf3/","id":"0950deb9-ced5-49dd-89e5-83d62929bbf3","name":"TestProject","description":"","dependents":[],"depends_on":null,"access_controlled":false,"role":null,"pushes":[],"push_urls":[],"created_at":"2022-10-07T15:28:50.161253Z","modified_at":"2022-10-07T15:28:50.161253Z"}]}' + recorded_at: Fri, 07 Oct 2022 15:29:06 GMT recorded_with: VCR 6.0.0 diff --git a/spec/kubetruth/config_spec.rb b/spec/kubetruth/config_spec.rb index 9d18d6b..4497bea 100644 --- a/spec/kubetruth/config_spec.rb +++ b/spec/kubetruth/config_spec.rb @@ -35,6 +35,16 @@ module Kubetruth expect(spec.skip).to equal(true) end + describe "#to_s" do + + it "shows as the hash contents only" do + spec = described_class::ProjectSpec.new(scope: "root", name: "myroot") + expect("#{spec.to_s}").to match(/{"scope":"root","name":"myroot"/) + expect("#{spec}").to match(/{"scope":"root","name":"myroot"/) + end + + end + end describe "initialization" do diff --git a/spec/kubetruth/ctapi_spec.rb b/spec/kubetruth/ctapi_spec.rb index eead8bf..899dd13 100644 --- a/spec/kubetruth/ctapi_spec.rb +++ b/spec/kubetruth/ctapi_spec.rb @@ -13,8 +13,9 @@ module Kubetruth # Spin up a local dev server and create a user with an api key to use # here, or use cloudtruth actual key = ENV['CLOUDTRUTH_API_KEY'] - url = ENV['CLOUDTRUTH_API_URL'] || "https://api.cloudtruth.io" # "https://localhost:8000" - instance = ::Kubetruth::CtApi.new(api_key: key, api_url: url) + url = ENV['CLOUDTRUTH_API_URL'] || "https://api.staging.cloudtruth.io" # "https://localhost:8000" + ::Kubetruth::CtApi.configure(api_key: key, api_url: url) + instance = ::Kubetruth::CtApi.new instance.client.config.debugging = false # ssl debug logging is messy, so only turn this on as desired instance.client.config.ssl_verify = false instance @@ -37,23 +38,13 @@ def create_project_fixture describe "instance" do - it "fails if not configured" do - expect { described_class.instance }.to raise_error(ArgumentError, /has not been configured/) - end - - it "succeeds when configured" do - described_class.configure(api_key: "sekret", api_url: "http://localhost") - expect(described_class.instance).to be_an_instance_of(described_class) - expect(described_class.instance).to equal(described_class.instance) - expect(described_class.instance.instance_variable_get(:@api_key)).to eq("sekret") - expect(described_class.instance.instance_variable_get(:@api_url)).to eq("http://localhost") - end - - it "re-instantiates when reset" do - described_class.configure(api_key: "sekret", api_url: "http://localhost") - old = described_class.instance - described_class.reset - expect(old).to_not equal(described_class.instance) + it "only fails if not configured" do + ctapi.class.configure(api_key: nil, api_url: "http://localhost") + expect { ::Kubetruth::CtApi.new }.to raise_error(ArgumentError, /has not been configured/) + ctapi.class.configure(api_key: "xyz", api_url: nil) + expect { ::Kubetruth::CtApi.new }.to raise_error(ArgumentError, /has not been configured/) + ctapi.class.configure(api_key: "xyz", api_url: "http://localhost") + expect { ::Kubetruth::CtApi.new }.to_not raise_error(ArgumentError, /has not been configured/) end end @@ -140,6 +131,8 @@ def create_project_fixture params = ctapi.parameters(project: @project_name) expect(params.collect(&:value).sort).to eq(["defaultone", "defaulttwo"]) + sleep 2 + tag = ctapi.apis[:environments].environments_tags_list(ctapi.environment_id("default"), name: "test_tag").results.first if tag ctapi.apis[:environments].environments_tags_partial_update(ctapi.environment_id("default"), tag.id, patched_tag: CloudtruthClient::PatchedTagUpdate.new(timestamp: Time.now)) @@ -147,12 +140,14 @@ def create_project_fixture tag = ctapi.apis[:environments].environments_tags_create(ctapi.environment_id("default"), CloudtruthClient::TagCreate.new(name: "test_tag")) end + sleep 2 + ctapi.apis[:projects].projects_parameters_values_partial_update(one_param_value.id, @one_param.id, @project_id, patched_value: CloudtruthClient::PatchedValue.new(internal_value: "newdefaultone")) params = ctapi.parameters(project: @project_name) expect(params.collect(&:value).sort).to eq(["defaulttwo", "newdefaultone"]) - params = ctapi.parameters(project: @project_name, tag: "test_tag") + params = described_class.new(tag: "test_tag").parameters(project: @project_name) expect(params.collect(&:value).sort).to eq(["defaultone", "defaulttwo"]) end @@ -172,9 +167,9 @@ def create_project_fixture ctapi.apis[:projects].projects_parameters_values_create(@two_param.id, @project_id, CloudtruthClient::ValueCreate.new(environment: ctapi.environment_id("default"), external: false, internal_value: "defaulttwo")) ctapi.apis[:projects].projects_parameters_values_create(@two_param.id, @project_id, CloudtruthClient::ValueCreate.new(environment: ctapi.environment_id("development"), external: false, internal_value: "developmenttwo")) - params = ctapi.parameters(project: @project_name, environment: "default") + params = described_class.new(environment: "default").parameters(project: @project_name) expect(params.collect(&:value)).to eq(["defaultone", "defaulttwo"]) - params = ctapi.parameters(project: @project_name, environment: "development") + params = described_class.new(environment: "development").parameters(project: @project_name) expect(params.collect(&:value)).to eq(["developmentone", "developmenttwo"]) end @@ -227,7 +222,7 @@ def create_project_fixture it "gets template" do ctapi.apis[:projects].projects_parameters_values_create(@one_param.id, @project_id, CloudtruthClient::ValueCreate.new(environment: ctapi.environment_id("default"), external: false, internal_value: "defaultone")) - expect(ctapi.template("tone", project: @project_name, environment: "default")).to eq("tmpl1 defaultone") + expect(ctapi.template("tone", project: @project_name)).to eq("tmpl1 defaultone") expect(Logging.contents).to match(/Template Retrieve query result.*tmpl1 defaultone/) end @@ -236,11 +231,41 @@ def create_project_fixture ctapi.apis[:projects].projects_parameters_values_create(@three_param.id, @project_id, CloudtruthClient::ValueCreate.new(environment: ctapi.environment_id("default"), external: false, internal_value: "defaultthree")) @three_tmpl = ctapi.apis[:projects].projects_templates_create(@project_id, CloudtruthClient::TemplateCreate.new(name: "tthree", body: "tmpl3 {{three}}")) - expect(ctapi.template("tthree", project: @project_name, environment: "default")).to eq("tmpl3 defaultthree") + expect(ctapi.template("tthree", project: @project_name)).to eq("tmpl3 defaultthree") expect(Logging.contents).to_not match(/Template Retrieve query result.*tmpl3 defaultthree/) expect(Logging.contents).to match(/Template Retrieve query result.*/) end + it "gets template by tag" do + one_param_value = ctapi.apis[:projects].projects_parameters_values_create(@one_param.id, @project_id, CloudtruthClient::ValueCreate.new(environment: ctapi.environment_id("default"), external: false, internal_value: "defaultone")) + two_param_value = ctapi.apis[:projects].projects_parameters_values_create(@two_param.id, @project_id, CloudtruthClient::ValueCreate.new(environment: ctapi.environment_id("default"), external: false, internal_value: "defaulttwo")) + params = ctapi.parameters(project: @project_name) + expect(params.collect(&:value).sort).to eq(["defaultone", "defaulttwo"]) + expect(ctapi.template("tone", project: @project_name)).to eq("tmpl1 defaultone") + + sleep 2 + + tag = ctapi.apis[:environments].environments_tags_list(ctapi.environment_id("default"), name: "test_tag").results.first + if tag + ctapi.apis[:environments].environments_tags_partial_update(ctapi.environment_id("default"), tag.id, patched_tag: CloudtruthClient::PatchedTagUpdate.new(timestamp: Time.now)) + else + tag = ctapi.apis[:environments].environments_tags_create(ctapi.environment_id("default"), CloudtruthClient::TagCreate.new(name: "test_tag")) + end + + sleep 2 + + ctapi.apis[:projects].projects_parameters_values_partial_update(one_param_value.id, @one_param.id, @project_id, patched_value: CloudtruthClient::PatchedValue.new(internal_value: "newdefaultone")) + + params = ctapi.parameters(project: @project_name) + expect(params.collect(&:value).sort).to eq(["defaulttwo", "newdefaultone"]) + expect(ctapi.template("tone", project: @project_name)).to eq("tmpl1 newdefaultone") + + ctapi_tagged = described_class.new(tag: "test_tag") + params = ctapi_tagged.parameters(project: @project_name) + expect(params.collect(&:value).sort).to eq(["defaultone", "defaulttwo"]) + expect(ctapi_tagged.template("tone", project: @project_name)).to eq("tmpl1 defaultone") + end + end end diff --git a/spec/kubetruth/etl_spec.rb b/spec/kubetruth/etl_spec.rb index 0aac0a8..816207f 100644 --- a/spec/kubetruth/etl_spec.rb +++ b/spec/kubetruth/etl_spec.rb @@ -18,6 +18,9 @@ module Kubetruth allow(@kubeapi).to receive(:namespace).and_return("default") allow(@kubeapi).to receive(:get_project_mappings).and_return([]) allow_any_instance_of(described_class).to receive(:kubeapi).and_return(@kubeapi) + + @ctapi = double() + allow(Kubetruth::CtApi).to receive(:new).and_return(@ctapi) end describe "#interruptible_sleep" do @@ -421,14 +424,13 @@ class ForceExit < Exception; end describe "#apply" do - let(:collection) { ProjectCollection.new } let(:root_spec_crd) { default_root_spec } let(:config) { Kubetruth::Config.new([root_spec_crd]) } + let(:collection) { ProjectCollection.new(config) } before(:each) do - allow(CtApi).to receive(:reset) @ns = "primary-ns" allow(@kubeapi).to receive(:namespace).and_return(@ns) @@ -551,7 +553,7 @@ class ForceExit < Exception; end expect(config.root_spec.resource_templates.values.first).to receive(:render) do |*args, **kwargs| expect(kwargs[:project]).to eq("proj1") expect(kwargs[:project_heirarchy]).to eq({"proj1"=>{"proj2"=>{}}}) - expect(kwargs[:parameter_origins]).to eq({"param1"=>"proj1 (proj2)"}) + expect(kwargs[:parameter_origins]&.call).to eq({"param1"=>"proj1 (proj2)"}) "" end @@ -582,10 +584,10 @@ class ForceExit < Exception; end expect(kwargs[:project]).to eq("proj1") expect(kwargs[:project_heirarchy]).to eq(collection.projects["proj1"].heirarchy) expect(kwargs[:debug]).to eq(etl.logger.debug?) - expect(kwargs[:parameters]).to eq({"param1"=>"value1"}) - expect(kwargs[:parameter_origins]).to eq({"param1"=>"proj1"}) - expect(kwargs[:secrets]).to eq({"param2"=>"value2"}) - expect(kwargs[:secret_origins]).to eq({"param2"=>"proj1"}) + expect(kwargs[:parameters]&.call).to eq({"param1"=>"value1"}) + expect(kwargs[:parameter_origins]&.call).to eq({"param1"=>"proj1"}) + expect(kwargs[:secrets]&.call).to eq({"param2"=>"value2"}) + expect(kwargs[:secret_origins]&.call).to eq({"param2"=>"proj1"}) expect(kwargs[:templates]).to be_an_instance_of(Template::TemplatesDrop) expect(kwargs[:context]).to match(hash_including(:resource_name, :resource_namespace)) "" @@ -610,10 +612,10 @@ class ForceExit < Exception; end allow(etl).to receive(:kube_apply) expect(config.root_spec.resource_templates.values.first).to receive(:render) do |*args, **kwargs| - expect(kwargs[:parameters]).to eq({"param1"=>"value1"}) - expect(kwargs[:parameter_origins]).to eq({"param1"=>"proj1", "param3"=>"proj1"}) - expect(kwargs[:secrets]).to eq({"param2"=>"value2"}) - expect(kwargs[:secret_origins]).to eq({"param2"=>"proj1", "param4"=>"proj1"}) + expect(kwargs[:parameters]&.call).to eq({"param1"=>"value1"}) + expect(kwargs[:parameter_origins]&.call).to eq({"param1"=>"proj1", "param3"=>"proj1"}) + expect(kwargs[:secrets]&.call).to eq({"param2"=>"value2"}) + expect(kwargs[:secret_origins]&.call).to eq({"param2"=>"proj1", "param4"=>"proj1"}) "" end @@ -623,14 +625,13 @@ class ForceExit < Exception; end describe "default templates" do - let(:collection) { ProjectCollection.new } let(:root_spec_crd) { default_root_spec } let(:config) { Kubetruth::Config.new([root_spec_crd]) } + let(:collection) { ProjectCollection.new(config) } before(:each) do - allow(CtApi).to receive(:reset) @ns = "primary-ns" allow(@kubeapi).to receive(:namespace).and_return(@ns) diff --git a/spec/kubetruth/project_collection_spec.rb b/spec/kubetruth/project_collection_spec.rb index efcdd5f..283cb7c 100644 --- a/spec/kubetruth/project_collection_spec.rb +++ b/spec/kubetruth/project_collection_spec.rb @@ -5,11 +5,11 @@ module Kubetruth describe ProjectCollection do - let(:collection) { described_class.new } + let(:collection) { described_class.new(Kubetruth::Config::ProjectSpec.new) } before(:each) do @ctapi = double(Kubetruth::CtApi) - allow(Kubetruth::CtApi).to receive(:instance).and_return(@ctapi) + allow(Kubetruth::CtApi).to receive(:new).and_return(@ctapi) end describe "#names" do diff --git a/spec/kubetruth/project_spec.rb b/spec/kubetruth/project_spec.rb index 9acaecb..46697db 100644 --- a/spec/kubetruth/project_spec.rb +++ b/spec/kubetruth/project_spec.rb @@ -7,11 +7,13 @@ module Kubetruth describe Project do - let(:collection) { ProjectCollection.new } + let(:collection) { ProjectCollection.new(Kubetruth::Config::ProjectSpec.new) } before(:each) do @ctapi = double() - allow(collection).to receive(:ctapi).and_return(@ctapi) + @collection_ctapi = double() + allow_any_instance_of(described_class).to receive(:ctapi).and_return(@ctapi) + allow(collection).to receive(:ctapi).and_return(@collection_ctapi) end describe "#initialize" do @@ -31,20 +33,20 @@ module Kubetruth collection: collection) } it "handles empty" do - expect(@ctapi).to receive(:parameters).with(project: project.name, environment: "default", tag: nil).and_return([]) + expect(@ctapi).to receive(:parameters).with(project: project.name).and_return([]) params = project.parameters expect(params).to eq([]) end it "uses spec versions se" do - expect(@ctapi).to receive(:parameters).with(project: project.name, environment: "default", tag: nil).and_return([]) + expect(@ctapi).to receive(:parameters).with(project: project.name).and_return([]) params = project.parameters expect(params).to eq([]) end it "uses simple key_selector" do project.spec.key_selector = /svc/ - expect(@ctapi).to receive(:parameters).with(project: project.name, environment: "default", tag: nil).and_return([ + expect(@ctapi).to receive(:parameters).with(project: project.name).and_return([ Parameter.new(key: "svc.param1", value: "value1", secret: false), Parameter.new(key: "svc.param2", value: "value2", secret: false), ]) @@ -55,7 +57,7 @@ module Kubetruth it "uses complex key_selector" do project.spec.key_selector = /foo$/ - expect(@ctapi).to receive(:parameters).with(project: project.name, environment: "default", tag: nil).and_return([ + expect(@ctapi).to receive(:parameters).with(project: project.name).and_return([ Parameter.new(key: "svc.param1", value: "value1", secret: false), Parameter.new(key: "svc.param2.foo", value: "value2", secret: false), ]) @@ -68,7 +70,7 @@ module Kubetruth it "doesn't expose secret in debug log" do Logging.setup_logging(level: :debug, color: false) - expect(@ctapi).to receive(:parameters).with(project: project.name, environment: "default", tag: nil).and_return([ + expect(@ctapi).to receive(:parameters).with(project: project.name).and_return([ Parameter.new(key: "param1", value: "value1", secret: false), Parameter.new(key: "param2", value: "sekret", secret: true), Parameter.new(key: "param3", value: "alsosekret", secret: true), diff --git a/spec/kubetruth/template_spec.rb b/spec/kubetruth/template_spec.rb index 1b724e5..87b9a9e 100644 --- a/spec/kubetruth/template_spec.rb +++ b/spec/kubetruth/template_spec.rb @@ -512,6 +512,15 @@ module Kubetruth expect(top.render(ctx: drop)).to eq("foo-bar") end + describe "#to_s" do + + it "shows the template source" do + drop = described_class.new({"foo" => Template.new("bar")}) + expect("#{drop.to_s}").to eq('{"foo":"bar"}') + expect("#{drop}").to eq('{"foo":"bar"}') + end + + end end @@ -519,24 +528,23 @@ module Kubetruth before(:each) do @ctapi = double(CtApi) - allow(CtApi).to receive(:instance).and_return(@ctapi) end it "produces all template names" do - drop = described_class.new(project: "proj1", environment: "env1") + drop = described_class.new(project: "proj1", ctapi: @ctapi) expect(@ctapi).to receive(:template_names).with(project: "proj1").and_return(["name1"]) expect(drop.names).to eq(["name1"]) end it "returns a template body for given name" do - drop = described_class.new(project: "proj1", environment: "env1") - expect(@ctapi).to receive(:template).with("foo", project: "proj1", environment: "env1").and_return("body1") + drop = described_class.new(project: "proj1", ctapi: @ctapi) + expect(@ctapi).to receive(:template).with("foo", project: "proj1").and_return("body1") top = Template.new("{{drop.foo}}") expect(top.render(drop: drop)).to eq("body1") end it "fails for missing template" do - drop = described_class.new(project: "proj1", environment: "env1") + drop = described_class.new(project: "proj1", ctapi: @ctapi) expect(@ctapi).to receive(:template).and_raise(Kubetruth::Error.new("Unknown template: nothere")) top = Template.new("{{drop.nothere}}") expect { top.render(drop: drop) }.to raise_error(Kubetruth::Error, /Unknown template: nothere/) @@ -592,9 +600,10 @@ module Kubetruth end it "masks secrets in logs" do + # Note: secrets/parameters are now loaded dynamically, so are a proc when passed to template render secrets = {"foo" => "sekret"} tmpl = described_class.new("secret: {{secrets.foo}} encoded: {{secrets.foo | encode64}}") - expect(tmpl.render(secrets: secrets)).to eq("secret: sekret encoded: #{Base64.strict_encode64("sekret")}") + expect(tmpl.render(secrets: proc { secrets })).to eq("secret: sekret encoded: #{Base64.strict_encode64("sekret")}") expect(Logging.contents).to_not include("sekret") expect(Logging.contents).to include("") expect(Logging.contents).to_not include(Base64.strict_encode64("sekret")) @@ -602,9 +611,10 @@ module Kubetruth end it "masks secrets in exception" do + # Note: secrets/parameters are now loaded dynamically, so are a proc when passed to template render secrets = {"foo" => "sekret"} tmpl = described_class.new("{{fail}}") - expect { tmpl.render(secrets: secrets) }.to raise_error(Template::Error) do |error| + expect { tmpl.render(secrets: proc { secrets }) }.to raise_error(Template::Error) do |error| expect(error.message).to_not include("sekret") expect(error.message).to include("") expect(error.message).to_not include(Base64.strict_encode64("sekret")) @@ -613,9 +623,10 @@ module Kubetruth end it "masks multiline secrets in logs" do + # Note: secrets/parameters are now loaded dynamically, so are a proc when passed to template render secrets = {"foo" => "sekret\nsosekret"} tmpl = described_class.new("secret: {{secrets.foo}} encoded: {{secrets.foo | encode64}}") - expect(tmpl.render(secrets: secrets)).to eq("secret: sekret\nsosekret encoded: #{Base64.strict_encode64("sekret\nsosekret")}") + expect(tmpl.render(secrets: proc { secrets })).to eq("secret: sekret\nsosekret encoded: #{Base64.strict_encode64("sekret\nsosekret")}") expect(Logging.contents).to_not include("sekret") expect(Logging.contents).to include("") expect(Logging.contents).to_not include(Base64.strict_encode64("sekret\nsosekret")) @@ -623,14 +634,14 @@ module Kubetruth Logging.clear tmpl = described_class.new("secret:{{ secrets.foo | nindent: 2}}\nencoded:{{secrets.foo | encode64 | nindent:2}}") - expect(tmpl.render(secrets: secrets)).to eq("secret: \n sekret\n sosekret\nencoded: \n #{Base64.strict_encode64("sekret\nsosekret")}") + expect(tmpl.render(secrets: proc { secrets })).to eq("secret: \n sekret\n sosekret\nencoded: \n #{Base64.strict_encode64("sekret\nsosekret")}") expect(Logging.contents).to_not include("sekret") expect(Logging.contents).to include("") expect(Logging.contents).to_not include(Base64.strict_encode64("sekret\nsosekret")) expect(Logging.contents).to include("") tmpl = described_class.new("{{fail}}") - expect { tmpl.render(secrets: secrets) }.to raise_error(Template::Error) do |error| + expect { tmpl.render(secrets: proc { secrets }) }.to raise_error(Template::Error) do |error| expect(error.message).to_not include("sekret") expect(error.message).to include("") expect(error.message).to_not include(Base64.strict_encode64("sekret\nsosekret"))