Last active
April 18, 2016 12:18
-
-
Save cben/2619583f777ddb480a10 to your computer and use it in GitHub Desktop.
ManageIQ labels and tags examples
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
irb(main):050:0> pp ContainerBuildPod.all.map{|p| {name: p.name, | |
build_pod_labels: p.labels.pluck(:name, :value), | |
pod_labels: p.container_group && p.container_group.labels.pluck(:name, :value)}} | |
[{:name=>"ruby-sample-build-1", | |
:build_pod_labels=> | |
[["app", "ruby-sample-build"], | |
["buildconfig", "ruby-sample-build"], | |
["name", "ruby-sample-build"], | |
["openshift.io/build-config.name", "ruby-sample-build"], | |
["template", "application-template-stibuild"]], | |
:pod_labels=>[["openshift.io/build.name", "ruby-sample-build-1"]]}, | |
{:name=>"ruby-ex-1", | |
:build_pod_labels=> | |
[["app", "ruby-ex"], | |
["buildconfig", "ruby-ex"], | |
["openshift.io/build-config.name", "ruby-ex"]], | |
:pod_labels=>nil}, | |
{:name=>"ruby-ex-2", | |
:build_pod_labels=> | |
[["app", "ruby-ex"], | |
["buildconfig", "ruby-ex"], | |
["openshift.io/build-config.name", "ruby-ex"]], | |
:pod_labels=>nil}, | |
{:name=>"ruby-ex-3", | |
:build_pod_labels=> | |
[["app", "ruby-ex"], | |
["buildconfig", "ruby-ex"], | |
["openshift.io/build-config.name", "ruby-ex"]], | |
:pod_labels=>nil}, | |
{:name=>"ruby-ex-4", | |
:build_pod_labels=> | |
[["app", "ruby-ex"], | |
["buildconfig", "ruby-ex"], | |
["openshift.io/build-config.name", "ruby-ex"]], | |
:pod_labels=>[["openshift.io/build.name", "ruby-ex-4"]]}, | |
{:name=>"cakephp-ex-1", | |
:build_pod_labels=> | |
[["app", "cakephp-ex"], | |
["buildconfig", "cakephp-ex"], | |
["openshift.io/build-config.name", "cakephp-ex"]], | |
:pod_labels=>nil}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Some random exploration | |
irb(main):070:0> pp london.classification | |
#<Classification:0x00555870c513e0 | |
id: 4, | |
description: "London", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 6, | |
parent_id: 1, | |
show: true, | |
default: true, | |
perf_by_tag: nil> | |
irb(main):072:0> Classification.tag2human('/managed/location/london') | |
Tag Load (0.4ms) SELECT "tags".* FROM "tags" WHERE ("tags"."id" BETWEEN $1 AND $2) AND "tags"."name" = $3 LIMIT $4 [["id", 0], ["id", 999999999999], ["name", "/managed/location"], ["LIMIT", 1]] | |
Tag Inst Including Associations (0.1ms - 1rows) | |
Classification Load (0.4ms) SELECT "classifications".* FROM "classifications" WHERE "classifications"."tag_id" = $1 LIMIT $2 [["tag_id", 3], ["LIMIT", 1]] | |
Classification Inst Including Associations (0.3ms - 1rows) | |
Tag Load (1.7ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]] | |
Tag Inst Including Associations (0.1ms - 1rows) | |
Tag Load (0.3ms) SELECT "tags".* FROM "tags" WHERE ("tags"."id" BETWEEN $1 AND $2) AND "tags"."name" = $3 LIMIT $4 [["id", 0], ["id", 999999999999], ["name", "/managed/location/london"], ["LIMIT", 1]] | |
Tag Inst Including Associations (0.1ms - 1rows) | |
Classification Load (0.2ms) SELECT "classifications".* FROM "classifications" WHERE "classifications"."tag_id" = $1 LIMIT $2 [["tag_id", 6], ["LIMIT", 1]] | |
Classification Inst Including Associations (0.2ms - 1rows) | |
=> "Location: London" | |
irb(main):075:0> pp Classification.tag_to_model_hash(london) | |
Tag Load (0.3ms) SELECT "tags".* FROM "tags" WHERE ("tags"."id" BETWEEN $1 AND $2) AND "tags"."name" = $3 LIMIT $4 [["id", 0], ["id", 999999999999], ["name", "/managed/location"], ["LIMIT", 1]] | |
Tag Inst Including Associations (0.1ms - 1rows) | |
Classification Load (0.3ms) SELECT "classifications".* FROM "classifications" WHERE "classifications"."tag_id" = $1 LIMIT $2 [["tag_id", 3], ["LIMIT", 1]] | |
Classification Inst Including Associations (0.2ms - 1rows) | |
Tag Load (0.8ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]] | |
Tag Inst Including Associations (0.1ms - 1rows) | |
Tag Load (0.3ms) SELECT "tags".* FROM "tags" WHERE ("tags"."id" BETWEEN $1 AND $2) AND "tags"."name" = $3 LIMIT $4 [["id", 0], ["id", 999999999999], ["name", "/managed/location/london"], ["LIMIT", 1]] | |
Tag Inst Including Associations (0.1ms - 1rows) | |
Classification Load (1.9ms) SELECT "classifications".* FROM "classifications" WHERE "classifications"."tag_id" = $1 LIMIT $2 [["tag_id", 6], ["LIMIT", 1]] | |
Classification Inst Including Associations (0.2ms - 1rows) | |
Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT $2 [["id", 6], ["LIMIT", 1]] | |
Tag Inst Including Associations (0.1ms - 1rows) | |
{:id=>6, | |
:name=>"/managed/location/london", | |
:namespace=>"managed", | |
:category_id=>1, | |
:category_name=>"location", | |
:category_description=>"Location", | |
:category_single_value=>true, | |
:entry_id=>4, | |
:entry_name=>"london", | |
:entry_description=>"London"} | |
=> {:id=>6, :name=>"/managed/location/london", :namespace=>"managed", :category_id=>1, :category_name=>"location", :category_description=>"Location", :category_single_value=>true, :entry_id=>4, :entry_name=>"london", :entry_description=>"London"} | |
irb(main):080:0> pp Classification.all.sort | |
Classification Load (0.4ms) SELECT "classifications".* FROM "classifications" | |
Classification Inst Including Associations (3.6ms - 123rows) | |
[#<Classification:0x0055586af99ff8 | |
id: 1, | |
description: "Location", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: | |
"The geographic location of the resource, such as New York, Chicago, or London.", | |
tag_id: 3, | |
parent_id: 0, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af99aa8 | |
id: 2, | |
description: "New York", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 4, | |
parent_id: 1, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af99468 | |
id: 3, | |
description: "Chicago", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 5, | |
parent_id: 1, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af98e28 | |
id: 4, | |
description: "London", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 6, | |
parent_id: 1, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af98860 | |
id: 5, | |
description: "Paris", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 7, | |
parent_id: 1, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af98450 | |
id: 6, | |
description: "Workload", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: | |
"The workloads a resource provides, such as Web Server, Database, or Firewall.", | |
tag_id: 8, | |
parent_id: 0, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af7fe50 | |
id: 7, | |
description: "Desktop", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 9, | |
parent_id: 6, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af7f6a8 | |
id: 8, | |
description: "Active Directory Server", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 10, | |
parent_id: 6, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af7f090 | |
id: 9, | |
description: "Application Servers", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 11, | |
parent_id: 6, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af7e910 | |
id: 10, | |
description: "Database", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 12, | |
parent_id: 6, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af7e3c0 | |
id: 11, | |
description: "DHCP Server", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 13, | |
parent_id: 6, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af7d998 | |
id: 12, | |
description: "EVM Appliance", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 14, | |
parent_id: 6, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af7d2b8 | |
id: 13, | |
description: "Virtual Infrastructure Management", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 15, | |
parent_id: 6, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af7cc50 | |
id: 14, | |
description: "Messaging", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 16, | |
parent_id: 6, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af7c610 | |
id: 15, | |
description: "Security", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 17, | |
parent_id: 6, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af7c048 | |
id: 16, | |
description: "Owner", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: "The individual or group that owns the resource.", | |
tag_id: 18, | |
parent_id: 0, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af7b8f0 | |
id: 17, | |
description: "Production Linux Team", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 19, | |
parent_id: 16, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af7b440 | |
id: 18, | |
description: "Production Operations Team", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 20, | |
parent_id: 16, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af7afe0 | |
id: 19, | |
description: "Windows 2008 Test Team", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 21, | |
parent_id: 16, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af7aba8 | |
id: 20, | |
description: "Environment", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: | |
"The resource environment, such as Development, QA, Test, or Production", | |
tag_id: 22, | |
parent_id: 0, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af7a568 | |
id: 21, | |
description: "Development", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 23, | |
parent_id: 20, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af79f00 | |
id: 22, | |
description: "Production", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 24, | |
parent_id: 20, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af798c0 | |
id: 23, | |
description: "Quarantine", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 25, | |
parent_id: 20, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af793c0 | |
id: 24, | |
description: "Test", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 26, | |
parent_id: 20, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af78ec0 | |
id: 25, | |
description: "Quality Assurance", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 27, | |
parent_id: 20, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af78998 | |
id: 26, | |
description: "User roles", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 28, | |
parent_id: 0, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af78308 | |
id: 27, | |
description: "Administrator", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 29, | |
parent_id: 26, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af5fe98 | |
id: 28, | |
description: "Super Administrator", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 30, | |
parent_id: 26, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af5f808 | |
id: 29, | |
description: "Helpdesk / Support", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 31, | |
parent_id: 26, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af5f3f8 | |
id: 30, | |
description: "Auditor", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 32, | |
parent_id: 26, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af5ef20 | |
id: 31, | |
description: "Approver", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 33, | |
parent_id: 26, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af5eae8 | |
id: 32, | |
description: "User", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 34, | |
parent_id: 26, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af5e6d8 | |
id: 33, | |
description: "Operator", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 35, | |
parent_id: 26, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af5e2a0 | |
id: 34, | |
description: "Service Level", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: "The level of service associated with this resource.", | |
tag_id: 36, | |
parent_id: 0, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af5de40 | |
id: 35, | |
description: "Silver", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 37, | |
parent_id: 34, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af5da30 | |
id: 36, | |
description: "Gold", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 38, | |
parent_id: 34, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af5d620 | |
id: 37, | |
description: "Platinum", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 39, | |
parent_id: 34, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af5d210 | |
id: 38, | |
description: "Customer", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: "The name of the customer associated with this resource.", | |
tag_id: 40, | |
parent_id: 0, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af5cdb0 | |
id: 39, | |
description: "Line of Business", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: | |
"The Line of Business the resource is assigned to, such as Retail, Trading, or Manufacturing.", | |
tag_id: 41, | |
parent_id: 0, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af5c7c0 | |
id: 40, | |
description: "Department", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: | |
"The department the resource is assigned to, such as HR, Accounting, or Sales.", | |
tag_id: 42, | |
parent_id: 0, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af5c298 | |
id: 41, | |
description: "Accounting", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 43, | |
parent_id: 40, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af57cc0 | |
id: 42, | |
description: "Automotive", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 44, | |
parent_id: 40, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af57568 | |
id: 43, | |
description: "Communication", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 45, | |
parent_id: 40, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af57130 | |
id: 44, | |
description: "Defense Systems", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 46, | |
parent_id: 40, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af56cd0 | |
id: 45, | |
description: "Engineering", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 47, | |
parent_id: 40, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af568c0 | |
id: 46, | |
description: "Financial Services", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 48, | |
parent_id: 40, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af56488 | |
id: 47, | |
description: "Human Resources", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 49, | |
parent_id: 40, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af55e70 | |
id: 48, | |
description: "Presales", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 50, | |
parent_id: 40, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af55830 | |
id: 49, | |
description: "Retail Operations", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 51, | |
parent_id: 40, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af553f8 | |
id: 50, | |
description: "Support", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 52, | |
parent_id: 40, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af54fc0 | |
id: 51, | |
description: "Trading Floor", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 53, | |
parent_id: 40, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af549d0 | |
id: 52, | |
description: "Healthcare", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 54, | |
parent_id: 40, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af54368 | |
id: 53, | |
description: "Marketing", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 55, | |
parent_id: 40, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af3ff08 | |
id: 54, | |
description: "Purchasing", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 56, | |
parent_id: 40, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af3fad0 | |
id: 55, | |
description: "VI Operations", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 57, | |
parent_id: 40, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af3f648 | |
id: 56, | |
description: "Retail Operations Test", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 58, | |
parent_id: 40, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af3f0f8 | |
id: 57, | |
description: "Cost Center", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: "Cost Center", | |
tag_id: 59, | |
parent_id: 0, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af3ecc0 | |
id: 58, | |
description: "Cost Center 001", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 60, | |
parent_id: 57, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af3e888 | |
id: 59, | |
description: "Cost Center 002", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 61, | |
parent_id: 57, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af3e3d8 | |
id: 60, | |
description: "Network Location", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: | |
"The network location the resource is to be used, such as DMZ, Internal network or Cloud", | |
tag_id: 62, | |
parent_id: 0, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af3df28 | |
id: 61, | |
description: "DMZ", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 63, | |
parent_id: 60, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af3da78 | |
id: 62, | |
description: "Internal", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 64, | |
parent_id: 60, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af3d5a0 | |
id: 63, | |
description: "Cloud", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 65, | |
parent_id: 60, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af3d078 | |
id: 64, | |
description: "Exclusions", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: | |
"Operations that the resource may be excluded from, such as Analysis or Cloning.", | |
tag_id: 66, | |
parent_id: 0, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af3cc40 | |
id: 65, | |
description: "Do not Analyze", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 67, | |
parent_id: 64, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af3c808 | |
id: 66, | |
description: "Do not Clone", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 68, | |
parent_id: 64, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af3c308 | |
id: 67, | |
description: "Provisioning Scope", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: "Provisioning Scope", | |
tag_id: 69, | |
parent_id: 0, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af37e48 | |
id: 68, | |
description: "All", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 70, | |
parent_id: 67, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af37a38 | |
id: 69, | |
description: "EvmGroup-user_self_service", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: false, | |
example_text: nil, | |
tag_id: 71, | |
parent_id: 67, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af374e8 | |
id: 70, | |
description: "EVM Operations", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: "Operations", | |
tag_id: 72, | |
parent_id: 0, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af36db8 | |
id: 71, | |
description: "Analysis Failed", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 73, | |
parent_id: 70, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af36890 | |
id: 72, | |
description: "Analysis Required", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 74, | |
parent_id: 70, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af36430 | |
id: 73, | |
description: "Analysis Successful", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 75, | |
parent_id: 70, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af35fa8 | |
id: 74, | |
description: "Quota - Max CPUs", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: "Maximum number of CPUs allowed by Quota", | |
tag_id: 76, | |
parent_id: 0, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af358f0 | |
id: 75, | |
description: "1", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 77, | |
parent_id: 74, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af35440 | |
id: 76, | |
description: "2", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 78, | |
parent_id: 74, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af34f90 | |
id: 77, | |
description: "3", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 79, | |
parent_id: 74, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af34b58 | |
id: 78, | |
description: "4", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 80, | |
parent_id: 74, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af346d0 | |
id: 79, | |
description: "5", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 81, | |
parent_id: 74, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af340b8 | |
id: 80, | |
description: "10", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 82, | |
parent_id: 74, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af2fbd0 | |
id: 81, | |
description: "20", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 83, | |
parent_id: 74, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af2f608 | |
id: 82, | |
description: "30", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 84, | |
parent_id: 74, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af2f018 | |
id: 83, | |
description: "40", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 85, | |
parent_id: 74, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af2eb40 | |
id: 84, | |
description: "50", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 86, | |
parent_id: 74, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af2e690 | |
id: 85, | |
description: "Auto Approve - Max CPU", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: "Maximum number of CPUs allowed by Auto Approval", | |
tag_id: 87, | |
parent_id: 0, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af2e280 | |
id: 86, | |
description: "1", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 88, | |
parent_id: 85, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af2de20 | |
id: 87, | |
description: "2", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 89, | |
parent_id: 85, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af2d9c0 | |
id: 88, | |
description: "3", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 90, | |
parent_id: 85, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af2d5b0 | |
id: 89, | |
description: "4", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 91, | |
parent_id: 85, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af2d100 | |
id: 90, | |
description: "5", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 92, | |
parent_id: 85, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af2ca70 | |
id: 91, | |
description: "Auto Approve - Max VM", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: "Maximum number of VMs allowed by Auto Approval", | |
tag_id: 93, | |
parent_id: 0, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af2c638 | |
id: 92, | |
description: "1", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 94, | |
parent_id: 91, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af2c138 | |
id: 93, | |
description: "2", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 95, | |
parent_id: 91, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af23c40 | |
id: 94, | |
description: "3", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 96, | |
parent_id: 91, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af23808 | |
id: 95, | |
description: "4", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 97, | |
parent_id: 91, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af233a8 | |
id: 96, | |
description: "5", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 98, | |
parent_id: 91, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af22cc8 | |
id: 97, | |
description: "Quota - Max Memory", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: "Maximum Memory allowed by Quota (GB)", | |
tag_id: 99, | |
parent_id: 0, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af22638 | |
id: 98, | |
description: "1GB", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 100, | |
parent_id: 97, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af22200 | |
id: 99, | |
description: "2GB", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 101, | |
parent_id: 97, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af21da0 | |
id: 100, | |
description: "4GB", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 102, | |
parent_id: 97, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af21828 | |
id: 101, | |
description: "8GB", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 103, | |
parent_id: 97, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af211c0 | |
id: 102, | |
description: "10GB", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 104, | |
parent_id: 97, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af20d38 | |
id: 103, | |
description: "20GB", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 105, | |
parent_id: 97, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af20860 | |
id: 104, | |
description: "40GB", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 106, | |
parent_id: 97, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af20428 | |
id: 105, | |
description: "80GB", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 107, | |
parent_id: 97, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af17f30 | |
id: 106, | |
description: "Auto Approve - Max Memory", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: "Maximum Memory allowed by Auto Approval (GB)", | |
tag_id: 108, | |
parent_id: 0, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af17ad0 | |
id: 107, | |
description: "1GB", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 109, | |
parent_id: 106, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af17698 | |
id: 108, | |
description: "2GB", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 110, | |
parent_id: 106, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af17260 | |
id: 109, | |
description: "4GB", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 111, | |
parent_id: 106, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af16e00 | |
id: 110, | |
description: "8GB", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 112, | |
parent_id: 106, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af16900 | |
id: 111, | |
description: "Quota - Max Storage", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: "Maximum Storage allowed by Quota (GB)", | |
tag_id: 113, | |
parent_id: 0, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af16220 | |
id: 112, | |
description: "10GB", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 114, | |
parent_id: 111, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af15e10 | |
id: 113, | |
description: "20GB", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 115, | |
parent_id: 111, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af15a00 | |
id: 114, | |
description: "40GB", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 116, | |
parent_id: 111, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af15500 | |
id: 115, | |
description: "100GB", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 117, | |
parent_id: 111, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af15078 | |
id: 116, | |
description: "200GB", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 118, | |
parent_id: 111, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af14c18 | |
id: 117, | |
description: "400GB", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 119, | |
parent_id: 111, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af147e0 | |
id: 118, | |
description: "1TB", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 120, | |
parent_id: 111, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af14308 | |
id: 119, | |
description: "Auto Approve - Max Retirement Days", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: "Maximum Days for Retirement allowed by Auto Approval", | |
tag_id: 121, | |
parent_id: 0, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af0be60 | |
id: 120, | |
description: "30", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 122, | |
parent_id: 119, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af0b820 | |
id: 121, | |
description: "60", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 123, | |
parent_id: 119, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af0b370 | |
id: 122, | |
description: "90", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 124, | |
parent_id: 119, | |
show: true, | |
default: true, | |
perf_by_tag: nil>, | |
#<Classification:0x0055586af0aee8 | |
id: 123, | |
description: "180", | |
icon: nil, | |
read_only: false, | |
syntax: "string", | |
single_value: true, | |
example_text: nil, | |
tag_id: 125, | |
parent_id: 119, | |
show: true, | |
default: true, | |
perf_by_tag: nil>] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
irb(main):015:0> pp CustomAttribute.where(section: "labels").map{|x| [x.resource_type, x.name, x.value]}.sort.uniq; nil | |
CustomAttribute Load (0.4ms) SELECT "custom_attributes".* FROM "custom_attributes" WHERE "custom_attributes"."section" = $1 [["section", "labels"]] | |
CustomAttribute Inst Including Associations (1.8ms - 154rows) | |
[["ContainerBuild", "app", "ruby-ex"], | |
["ContainerBuild", "app", "ruby-sample-build"], | |
["ContainerBuild", "name", "ruby-sample-build"], | |
["ContainerBuild", "template", "application-template-stibuild"], | |
["ContainerBuildPod", "app", "ruby-ex"], | |
["ContainerBuildPod", "app", "ruby-sample-build"], | |
["ContainerBuildPod", "buildconfig", "ruby-ex"], | |
["ContainerBuildPod", "buildconfig", "ruby-sample-build"], | |
["ContainerBuildPod", "name", "ruby-sample-build"], | |
["ContainerBuildPod", "openshift.io/build-config.name", "ruby-ex"], | |
["ContainerBuildPod", "openshift.io/build-config.name", "ruby-sample-build"], | |
["ContainerBuildPod", "template", "application-template-stibuild"], | |
["ContainerGroup", "app", "ruby-ex"], | |
["ContainerGroup", "app", "ruby-sample-build"], | |
["ContainerGroup", "component", "deployer"], | |
["ContainerGroup", "deployment", "database-1"], | |
["ContainerGroup", "deployment", "docker-registry-1"], | |
["ContainerGroup", "deployment", "frontend-1"], | |
["ContainerGroup", "deployment", "management-metrics-1"], | |
["ContainerGroup", "deployment", "master-router-1"], | |
["ContainerGroup", "deployment", "router-1"], | |
["ContainerGroup", "deployment", "ruby-ex-2"], | |
["ContainerGroup", "deploymentconfig", "database"], | |
["ContainerGroup", "deploymentconfig", "docker-registry"], | |
["ContainerGroup", "deploymentconfig", "frontend"], | |
["ContainerGroup", "deploymentconfig", "management-metrics"], | |
["ContainerGroup", "deploymentconfig", "master-router"], | |
["ContainerGroup", "deploymentconfig", "router"], | |
["ContainerGroup", "deploymentconfig", "ruby-ex"], | |
["ContainerGroup", "docker-registry", "default"], | |
["ContainerGroup", "metrics-infra", "deployer"], | |
["ContainerGroup", "metrics-infra", "hawkular-cassandra"], | |
["ContainerGroup", "metrics-infra", "hawkular-metrics"], | |
["ContainerGroup", "metrics-infra", "heapster"], | |
["ContainerGroup", "name", "database"], | |
["ContainerGroup", "name", "frontend"], | |
["ContainerGroup", "name", "hawkular-cassandra-1"], | |
["ContainerGroup", "name", "hawkular-metrics"], | |
["ContainerGroup", "name", "heapster"], | |
["ContainerGroup", "openshift.io/build.name", "ruby-ex-2"], | |
["ContainerGroup", "openshift.io/build.name", "ruby-ex-3"], | |
["ContainerGroup", "openshift.io/build.name", "ruby-sample-build-1"], | |
["ContainerGroup", "provider", "openshift"], | |
["ContainerGroup", "router", "management-metrics"], | |
["ContainerGroup", "router", "master-router"], | |
["ContainerGroup", "router", "router"], | |
["ContainerGroup", "type", "hawkular-cassandra"], | |
["ContainerNode", | |
"kubernetes.io/hostname", | |
"oshift01.eng.lab.tlv.redhat.com"], | |
["ContainerNode", | |
"kubernetes.io/hostname", | |
"oshift02.eng.lab.tlv.redhat.com"], | |
["ContainerNode", | |
"kubernetes.io/hostname", | |
"oshift03.eng.lab.tlv.redhat.com"], | |
["ContainerNode", | |
"kubernetes.io/hostname", | |
"oshift04.eng.lab.tlv.redhat.com"], | |
["ContainerNode", "kubernetes.io/hostname", "vm-test-02.example.com"], | |
["ContainerNode", "kubernetes.io/hostname", "vm-test-03.example.com"], | |
["ContainerNode", "region", "infra"], | |
["ContainerNode", "region", "primary"], | |
["ContainerNode", "zone", "default"], | |
["ContainerNode", "zone", "west"], | |
["ContainerReplicator", "app", "ruby-ex"], | |
["ContainerReplicator", "app", "ruby-sample-build"], | |
["ContainerReplicator", "docker-registry", "default"], | |
["ContainerReplicator", "metrics-infra", "hawkular-cassandra"], | |
["ContainerReplicator", "metrics-infra", "hawkular-metrics"], | |
["ContainerReplicator", "metrics-infra", "heapster"], | |
["ContainerReplicator", "name", "hawkular-cassandra"], | |
["ContainerReplicator", "name", "hawkular-metrics"], | |
["ContainerReplicator", "name", "heapster"], | |
["ContainerReplicator", "openshift.io/deployment-config.name", "database"], | |
["ContainerReplicator", | |
"openshift.io/deployment-config.name", | |
"docker-registry"], | |
["ContainerReplicator", "openshift.io/deployment-config.name", "frontend"], | |
["ContainerReplicator", | |
"openshift.io/deployment-config.name", | |
"management-metrics"], | |
["ContainerReplicator", | |
"openshift.io/deployment-config.name", | |
"master-router"], | |
["ContainerReplicator", "openshift.io/deployment-config.name", "router"], | |
["ContainerReplicator", "openshift.io/deployment-config.name", "ruby-ex"], | |
["ContainerReplicator", "router", "management-metrics"], | |
["ContainerReplicator", "router", "master-router"], | |
["ContainerReplicator", "router", "router"], | |
["ContainerReplicator", "template", "application-template-stibuild"], | |
["ContainerReplicator", "type", "hawkular-cassandra"], | |
["ContainerRoute", "app", "ruby-ex"], | |
["ContainerRoute", "app", "ruby-sample-build"], | |
["ContainerRoute", "metrics-infra", "support"], | |
["ContainerRoute", "template", "application-template-stibuild"], | |
["ContainerService", "app", "ruby-ex"], | |
["ContainerService", "app", "ruby-sample-build"], | |
["ContainerService", "component", "apiserver"], | |
["ContainerService", "docker-registry", "default"], | |
["ContainerService", "metrics-infra", "hawkular-cassandra"], | |
["ContainerService", "metrics-infra", "hawkular-metrics"], | |
["ContainerService", "metrics-infra", "heapster"], | |
["ContainerService", "name", "hawkular-cassandra"], | |
["ContainerService", "name", "hawkular-metrics"], | |
["ContainerService", "name", "heapster"], | |
["ContainerService", "provider", "kubernetes"], | |
["ContainerService", "router", "management-metrics"], | |
["ContainerService", "router", "master-router"], | |
["ContainerService", "router", "router"], | |
["ContainerService", "template", "application-template-stibuild"]] | |
=> nil |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment