Commit 8332c2b7 authored by Eric Eastwood's avatar Eric Eastwood

Merge branch 'add-ingress-to-cluster-applications' of...

Merge branch 'add-ingress-to-cluster-applications' of gitlab.com:gitlab-org/gitlab-ce into add-ingress-to-cluster-applications
parents 4e07fd71 46cac851
......@@ -464,7 +464,9 @@ ActiveRecord::Schema.define(version: 20171106101200) do
create_table "cluster_platforms_kubernetes", force: :cascade do |t|
t.integer "cluster_id", null: false
t.string "api_url"
t.datetime_with_timezone "created_at", null: false
t.datetime_with_timezone "updated_at", null: false
t.text "api_url"
t.text "ca_cert"
t.string "namespace"
t.string "username"
......@@ -489,6 +491,9 @@ ActiveRecord::Schema.define(version: 20171106101200) do
create_table "cluster_providers_gcp", force: :cascade do |t|
t.integer "cluster_id", null: false
t.integer "status"
t.integer "num_nodes", null: false
t.datetime_with_timezone "created_at", null: false
t.datetime_with_timezone "updated_at", null: false
t.text "status_reason"
t.string "gcp_project_id", null: false
t.string "zone", null: false
......@@ -503,6 +508,10 @@ ActiveRecord::Schema.define(version: 20171106101200) do
create_table "clusters", force: :cascade do |t|
t.integer "user_id"
t.integer "provider_type"
t.integer "platform_type"
t.datetime_with_timezone "created_at", null: false
t.datetime_with_timezone "updated_at", null: false
t.boolean "enabled", default: true
t.string "name", null: false
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment