Skip to content

Commit

Permalink
Brings back test dev-data (#522)
Browse files Browse the repository at this point in the history
  • Loading branch information
awmackowiak authored Oct 31, 2024
1 parent 7fd9b52 commit fe25776
Showing 1 changed file with 89 additions and 1 deletion.
90 changes: 89 additions & 1 deletion vaas/vaas/resources/dev-data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,94 @@
remove_path: false
time_profile: 1
cluster: [1, 2, 3, 4]
- model: cluster.dc
pk: 1
fields: {name: First datacenter, symbol: dc1}
- model: cluster.dc
pk: 2
fields: {name: Second datacenter, symbol: dc2}
- model: manager.backend
pk: 1
fields: {address: 192.168.199.10, port: 80, weight: 1, dc: 1, max_connections: 5,
connect_timeout: '0.30', first_byte_timeout: '5.00', between_bytes_timeout: '1.00',
director: 1, enabled: true, inherit_time_profile: true}
- model: manager.backend
pk: 2
fields: {address: 192.168.199.11, port: 80, weight: 1, dc: 1, max_connections: 5,
connect_timeout: '0.30', first_byte_timeout: '5.00', between_bytes_timeout: '1.00',
director: 1, enabled: true, inherit_time_profile: true}
- model: manager.backend
pk: 3
fields: {address: 192.168.199.12, port: 80, weight: 2, dc: 1, max_connections: 5,
connect_timeout: '0.30', first_byte_timeout: '5.00', between_bytes_timeout: '1.00',
director: 1, enabled: true, inherit_time_profile: true}
- model: manager.backend
pk: 4
fields: {address: 192.168.199.13, port: 80, weight: 3, dc: 1, max_connections: 5,
connect_timeout: '0.30', first_byte_timeout: '5.00', between_bytes_timeout: '1.00',
director: 2, enabled: true, inherit_time_profile: true}
- model: manager.backend
pk: 5
fields: {address: 192.168.199.14, port: 80, weight: 4, dc: 1, max_connections: 5,
connect_timeout: '0.30', first_byte_timeout: '5.00', between_bytes_timeout: '1.00',
director: 2, enabled: true, inherit_time_profile: true}
- model: manager.backend
pk: 6
fields: {address: 192.168.199.15, port: 80, weight: 5, dc: 1, max_connections: 5,
connect_timeout: '0.30', first_byte_timeout: '5.00', between_bytes_timeout: '1.00',
director: 2, enabled: true, inherit_time_profile: true}
- model: cluster.logicalcluster
pk: 1
fields: {name: cluster1_siteA_test, reload_timestamp: '2019-11-19T08:02:15.994071+00:00',
error_timestamp: '2019-11-13T07:46:40.450785+00:00', last_error_info: null,
current_vcl_versions: '[]', labels_list: '["one:192.168.199.6"]'}
- model: cluster.logicalcluster
pk: 2
fields: {name: cluster2_siteB_test, reload_timestamp: '2019-11-18T14:16:58.664933+00:00',
error_timestamp: '2019-11-13T07:46:40.453146+00:00', last_error_info: null,
current_vcl_versions: '[]', labels_list: '["two:192.168.199.4", "env:dev"]'}
- model: cluster.logicalcluster
pk: 3
fields: {name: cluster3_siteA_dev, reload_timestamp: '2019-11-18T14:16:58.664933+00:00',
error_timestamp: '2019-11-13T07:46:40.453839+00:00', last_error_info: null,
current_vcl_versions: '[]', labels_list: '["example.com"]'}
- model: cluster.logicalcluster
pk: 4
fields: {name: cluster4_siteC_prod, reload_timestamp: '2019-11-18T14:30:12.551574+00:00',
error_timestamp: '2019-11-13T07:46:40.454405+00:00', last_error_info: null,
current_vcl_versions: '[]', labels_list: '["placeholder:cluster4"]'}
- model: cluster.domainmapping
pk: 1
fields: {domain: "mydomain.com", mappings_list: '["{one}:6081","{two}:6081"]', type: dynamic, clusters: []}
- model: cluster.domainmapping
pk: 2
fields: {domain: "example.com", mappings_list: '["example.base.com"]', type: static, clusters: [3]}
- model: cluster.vcltemplate
pk: 2
fields: {name: vagrant_template_4, content: "<VCL/>", version: '4.0', comment: wefwef}
- model: cluster.varnishserver
pk: 3
fields: {ip: 192.168.199.4, hostname: varnish-4.1, cluster_weight: 1, http_port: 6081,
port: 6082, secret: edcf6c52-6f93-4d0d-82b9-cd74239146b0, status: active, dc: 1,
template: 2, cluster: 2, is_canary: false}
- model: cluster.varnishserver
pk: 4
fields: {ip: 192.168.199.6, hostname: varnish-6, cluster_weight: 1, http_port: 6081,
port: 6082, secret: edcf6c52-6f93-4d0d-82b9-cd74239146b0, status: active, dc: 1,
template: 2, cluster: 1, is_canary: false}
- model: cluster.varnishserver
pk: 2
fields: {ip: 192.168.199.7, hostname: varnish-7, cluster_weight: 1, http_port: 6081,
port: 6082, secret: edcf6c52-6f93-4d0d-82b9-cd74239146b0, status: active, dc: 1,
template: 2, cluster: 1, is_canary: false}
- model: router.route
pk: 1
fields:
condition: req.url ~ "^\/flexibleee"
priority: 51
director: 2
action: pass
clusters: [2]
- model: router.positiveurl
pk: 1
fields: {url: http://192.168.199.4:6081/flexibleee, route: 1}
Expand All @@ -59,7 +147,7 @@
- model: router.redirect
pk: 1
fields:
src_domain: 3
src_domain: 1
condition: req.url ~ "/source_url"
destination: http://mydomain.com/destination_url
action: 301
Expand Down

0 comments on commit fe25776

Please sign in to comment.