Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
500c9983
Commit
500c9983
authored
Oct 12, 2017
by
Taylor Thomas
Committed by
GitHub
Oct 12, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3019 from thomastaylor312/fix/crd_ordering
fix(tiller): Adds CRD ordering
parents
ab096b88
29c3b527
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
6 deletions
+12
-6
kind_sorter.go
pkg/tiller/kind_sorter.go
+2
-0
kind_sorter_test.go
pkg/tiller/kind_sorter_test.go
+10
-6
No files found.
pkg/tiller/kind_sorter.go
View file @
500c9983
...
...
@@ -36,6 +36,7 @@ var InstallOrder SortOrder = []string{
"PersistentVolume"
,
"PersistentVolumeClaim"
,
"ServiceAccount"
,
"CustomResourceDefinition"
,
"ClusterRole"
,
"ClusterRoleBinding"
,
"Role"
,
...
...
@@ -72,6 +73,7 @@ var UninstallOrder SortOrder = []string{
"Role"
,
"ClusterRoleBinding"
,
"ClusterRole"
,
"CustomResourceDefinition"
,
"ServiceAccount"
,
"PersistentVolumeClaim"
,
"PersistentVolume"
,
...
...
pkg/tiller/kind_sorter_test.go
View file @
500c9983
...
...
@@ -41,6 +41,10 @@ func TestKindSorter(t *testing.T) {
Name
:
"u"
,
Head
:
&
util
.
SimpleHead
{
Kind
:
"CronJob"
},
},
{
Name
:
"2"
,
Head
:
&
util
.
SimpleHead
{
Kind
:
"CustomResourceDefinition"
},
},
{
Name
:
"n"
,
Head
:
&
util
.
SimpleHead
{
Kind
:
"DaemonSet"
},
...
...
@@ -49,10 +53,6 @@ func TestKindSorter(t *testing.T) {
Name
:
"r"
,
Head
:
&
util
.
SimpleHead
{
Kind
:
"Deployment"
},
},
{
Name
:
"1"
,
Head
:
&
util
.
SimpleHead
{
Kind
:
"StorageClass"
},
},
{
Name
:
"!"
,
Head
:
&
util
.
SimpleHead
{
Kind
:
"HonkyTonkSet"
},
...
...
@@ -121,6 +121,10 @@ func TestKindSorter(t *testing.T) {
Name
:
"s"
,
Head
:
&
util
.
SimpleHead
{
Kind
:
"StatefulSet"
},
},
{
Name
:
"1"
,
Head
:
&
util
.
SimpleHead
{
Kind
:
"StorageClass"
},
},
{
Name
:
"w"
,
Head
:
&
util
.
SimpleHead
{
Kind
:
"APIService"
},
...
...
@@ -132,8 +136,8 @@ func TestKindSorter(t *testing.T) {
order
SortOrder
expected
string
}{
{
"install"
,
InstallOrder
,
"abcde1fghijklmnopqrstuvw!"
},
{
"uninstall"
,
UninstallOrder
,
"wvmutsrqponlkjihgf1edcba!"
},
{
"install"
,
InstallOrder
,
"abcde1fgh
2
ijklmnopqrstuvw!"
},
{
"uninstall"
,
UninstallOrder
,
"wvmutsrqponlkji
2
hgf1edcba!"
},
}
{
var
buf
bytes
.
Buffer
t
.
Run
(
test
.
description
,
func
(
t
*
testing
.
T
)
{
...
...
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