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
0
Merge Requests
0
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
Boxiang Sun
gitlab-ce
Commits
3f261a49
Commit
3f261a49
authored
Nov 07, 2017
by
Alessio Caiazza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add k8s namespace implementation and tests
parent
a03b5d22
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
101 additions
and
25 deletions
+101
-25
lib/gitlab/kubernetes/helm.rb
lib/gitlab/kubernetes/helm.rb
+6
-25
lib/gitlab/kubernetes/namespace.rb
lib/gitlab/kubernetes/namespace.rb
+29
-0
spec/lib/gitlab/kubernetes/namespace_spec.rb
spec/lib/gitlab/kubernetes/namespace_spec.rb
+66
-0
No files found.
lib/gitlab/kubernetes/helm.rb
View file @
3f261a49
...
...
@@ -14,6 +14,7 @@ module Gitlab
def
initialize
(
kubeclient
)
@kubeclient
=
kubeclient
@namespace
=
Namespace
.
new
(
NAMESPACE
,
kubeclient
)
end
def
init!
...
...
@@ -21,7 +22,7 @@ module Gitlab
end
def
install
(
app
)
create_namespace!
unless
has_namespace?
@namespace
.
ensure_exists!
@kubeclient
.
create_pod
(
pod_resource
(
app
))
end
...
...
@@ -33,15 +34,15 @@ module Gitlab
# values: "Pending", "Running", "Succeeded", "Failed", "Unknown"
#
def
installation_status
(
app
)
@kubeclient
.
get_pod
(
pod_name
(
app
),
NAMESPACE
).
status
.
phase
@kubeclient
.
get_pod
(
pod_name
(
app
),
@namespace
.
name
).
status
.
phase
end
def
installation_log
(
app
)
@kubeclient
.
get_pod_log
(
pod_name
(
app
),
NAMESPACE
).
body
@kubeclient
.
get_pod_log
(
pod_name
(
app
),
@namespace
.
name
).
body
end
def
delete_installation_pod!
(
app
)
@kubeclient
.
delete_pod
(
pod_name
(
app
),
NAMESPACE
)
@kubeclient
.
delete_pod
(
pod_name
(
app
),
@namespace
.
name
)
end
private
...
...
@@ -52,7 +53,7 @@ module Gitlab
def
pod_resource
(
app
)
labels
=
{
'gitlab.org/action'
:
'install'
,
'gitlab.org/application'
:
app
.
name
}
metadata
=
{
name:
pod_name
(
app
),
namespace:
NAMESPACE
,
labels:
labels
}
metadata
=
{
name:
pod_name
(
app
),
namespace:
@namespace
.
name
,
labels:
labels
}
container
=
{
name:
'helm'
,
image:
'alpine:3.6'
,
...
...
@@ -83,26 +84,6 @@ module Gitlab
def
helm_install_comand
(
app
)
"install
#{
app
.
chart
}
--name
#{
app
.
name
}
--namespace
#{
NAMESPACE
}
"
end
def
has_namespace?
return
@has_namespace
if
defined?
(
@has_namespace
)
begin
@kubeclient
.
get_namespace
(
NAMESPACE
)
@has_namespace
=
true
rescue
KubeException
=>
ke
raise
ke
unless
ke
.
error_code
==
404
false
end
end
def
create_namespace!
namespace_resource
=
::
Kubeclient
::
Resource
.
new
namespace_resource
.
metadata
=
{}
namespace_resource
.
metadata
.
name
=
NAMESPACE
@kubeclient
.
create_namespace
(
namespace_resource
)
end
end
end
end
lib/gitlab/kubernetes/namespace.rb
0 → 100644
View file @
3f261a49
module
Gitlab
module
Kubernetes
class
Namespace
attr_accessor
:name
def
initialize
(
name
,
client
)
self
.
name
=
name
@client
=
client
end
def
exists?
@client
.
get_namespace
(
name
)
rescue
::
KubeException
=>
ke
raise
ke
unless
ke
.
error_code
==
404
false
end
def
create!
resource
=
::
Kubeclient
::
Resource
.
new
(
metadata:
{
name:
name
})
@client
.
create_namespace
(
resource
)
end
def
ensure_exists!
exists?
||
create!
end
end
end
end
spec/lib/gitlab/kubernetes/namespace_spec.rb
0 → 100644
View file @
3f261a49
require
'spec_helper'
describe
Gitlab
::
Kubernetes
::
Namespace
do
let
(
:name
)
{
'a_namespace'
}
let
(
:client
)
{
double
(
'kubernetes client'
)
}
subject
{
described_class
.
new
(
name
,
client
)
}
it
{
expect
(
subject
.
name
).
to
eq
(
name
)
}
describe
'#exists?'
do
context
'when namespace do not exits'
do
let
(
:exception
)
{
::
KubeException
.
new
(
404
,
"namespace
#{
name
}
not found"
,
nil
)
}
it
'returns false'
do
expect
(
client
).
to
receive
(
:get_namespace
).
with
(
name
).
once
.
and_raise
(
exception
)
expect
(
subject
.
exists?
).
to
be_falsey
end
end
context
'when namespace exits'
do
let
(
:namespace
)
{
::
Kubeclient
::
Resource
.
new
(
kind:
'Namespace'
,
metadata:
{
name:
name
})
}
# partial representation
it
'returns true'
do
expect
(
client
).
to
receive
(
:get_namespace
).
with
(
name
).
once
.
and_return
(
namespace
)
expect
(
subject
.
exists?
).
to
be_truthy
end
end
context
'when cluster cannot be reached'
do
let
(
:exception
)
{
Errno
::
ECONNREFUSED
.
new
}
it
'raises exception'
do
expect
(
client
).
to
receive
(
:get_namespace
).
with
(
name
).
once
.
and_raise
(
exception
)
expect
{
subject
.
exists?
}.
to
raise_error
(
exception
)
end
end
end
describe
'#create!'
do
it
'creates a namespace'
do
matcher
=
have_attributes
(
metadata:
have_attributes
(
name:
name
))
expect
(
client
).
to
receive
(
:create_namespace
).
with
(
matcher
).
once
expect
{
subject
.
create!
}.
not_to
raise_error
end
end
describe
'#ensure_exists!'
do
it
'checks for existing namespace before creating'
do
expect
(
subject
).
to
receive
(
:exists?
).
once
.
ordered
.
and_return
(
false
)
expect
(
subject
).
to
receive
(
:create!
).
once
.
ordered
subject
.
ensure_exists!
end
it
'do not re-create an existing namespace'
do
expect
(
subject
).
to
receive
(
:exists?
).
once
.
and_return
(
true
)
expect
(
subject
).
not_to
receive
(
:create!
)
subject
.
ensure_exists!
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