Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
851d2b06
Commit
851d2b06
authored
Jun 21, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
11d24176
148516ba
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
109 additions
and
0 deletions
+109
-0
changelogs/unreleased/62772-migrate-managed-clusters-to-unmanaged.yml
...nreleased/62772-migrate-managed-clusters-to-unmanaged.yml
+6
-0
db/post_migrate/20190606163724_migrate_legacy_managed_clusters_to_unmanaged.rb
...606163724_migrate_legacy_managed_clusters_to_unmanaged.rb
+48
-0
spec/migrations/migrate_legacy_managed_clusters_to_unmanaged_spec.rb
...ions/migrate_legacy_managed_clusters_to_unmanaged_spec.rb
+55
-0
No files found.
changelogs/unreleased/62772-migrate-managed-clusters-to-unmanaged.yml
0 → 100644
View file @
851d2b06
---
title
:
Migrate GitLab managed project-level clusters to unmanaged if a Kubernetes
namespace was unable to be created
merge_request
:
29251
author
:
type
:
other
db/post_migrate/20190606163724_migrate_legacy_managed_clusters_to_unmanaged.rb
0 → 100644
View file @
851d2b06
# frozen_string_literal: true
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class
MigrateLegacyManagedClustersToUnmanaged
<
ActiveRecord
::
Migration
[
5.1
]
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
class
Cluster
<
ActiveRecord
::
Base
include
EachBatch
self
.
table_name
=
'clusters'
has_many
:kubernetes_namespaces
,
class_name:
'MigrateLegacyManagedClustersToUnmanaged::KubernetesNamespace'
scope
:managed
,
->
{
where
(
managed:
true
)
}
enum
cluster_type:
{
instance_type:
1
,
group_type:
2
,
project_type:
3
}
end
class
KubernetesNamespace
<
ActiveRecord
::
Base
self
.
table_name
=
'clusters_kubernetes_namespaces'
belongs_to
:cluster
,
class_name:
'MigrateLegacyManagedClustersToUnmanaged::Cluster'
end
def
up
Cluster
.
managed
.
project_type
.
left_joins
(
:kubernetes_namespaces
)
.
where
(
clusters_kubernetes_namespaces:
{
cluster_id:
nil
})
.
where
(
'clusters.created_at < ?'
,
5
.
minutes
.
ago
)
.
each_batch
do
|
batch
|
batch
.
update_all
(
managed:
false
)
end
end
def
down
end
end
spec/migrations/migrate_legacy_managed_clusters_to_unmanaged_spec.rb
0 → 100644
View file @
851d2b06
# frozen_string_literal: true
require
'spec_helper'
require
Rails
.
root
.
join
(
'db'
,
'post_migrate'
,
'20190606163724_migrate_legacy_managed_clusters_to_unmanaged.rb'
)
describe
MigrateLegacyManagedClustersToUnmanaged
,
:migration
do
let
(
:cluster_type
)
{
'project_type'
}
let
(
:created_at
)
{
1
.
hour
.
ago
}
let!
(
:cluster
)
do
table
(
:clusters
).
create!
(
name:
'cluster'
,
cluster_type:
described_class
::
Cluster
.
cluster_types
[
cluster_type
],
managed:
true
,
created_at:
created_at
)
end
it
'marks the cluster as unmanaged'
do
migrate!
expect
(
cluster
.
reload
).
not_to
be_managed
end
context
'cluster is not project type'
do
let
(
:cluster_type
)
{
'group_type'
}
it
'does not update the cluster'
do
migrate!
expect
(
cluster
.
reload
).
to
be_managed
end
end
context
'cluster has a kubernetes namespace associated'
do
before
do
table
(
:clusters_kubernetes_namespaces
).
create!
(
cluster_id:
cluster
.
id
,
namespace:
'namespace'
)
end
it
'does not update the cluster'
do
migrate!
expect
(
cluster
.
reload
).
to
be_managed
end
end
context
'cluster was recently created'
do
let
(
:created_at
)
{
2
.
minutes
.
ago
}
it
'does not update the cluster'
do
migrate!
expect
(
cluster
.
reload
).
to
be_managed
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment