mirror of
https://github.com/helm/helm.git
synced 2026-05-28 04:35:48 -04:00
fix(helm): move ServiceAccount before Secret in InstallOrder.
Service accounts must be installed before secrets when service account tokens (secrets) are be managed by Helm. Otherwise Kubernetes will delete any service account token right after creation, since there is no service account mounting the token (see https://kubernetes.io/docs/reference/access-authn-authz/service-accounts-admin/#token-controller) Closes #7159. Signed-off-by: Daniel Strobusch <1847260+dastrobu@users.noreply.github.com>
This commit is contained in:
parent
bf8318ea0b
commit
08663e6bb3
2 changed files with 9 additions and 9 deletions
|
|
@ -31,12 +31,12 @@ var InstallOrder KindSortOrder = []string{
|
|||
"LimitRange",
|
||||
"PodSecurityPolicy",
|
||||
"PodDisruptionBudget",
|
||||
"ServiceAccount",
|
||||
"Secret",
|
||||
"ConfigMap",
|
||||
"StorageClass",
|
||||
"PersistentVolume",
|
||||
"PersistentVolumeClaim",
|
||||
"ServiceAccount",
|
||||
"CustomResourceDefinition",
|
||||
"ClusterRole",
|
||||
"ClusterRoleList",
|
||||
|
|
@ -85,12 +85,12 @@ var UninstallOrder KindSortOrder = []string{
|
|||
"ClusterRoleList",
|
||||
"ClusterRole",
|
||||
"CustomResourceDefinition",
|
||||
"ServiceAccount",
|
||||
"PersistentVolumeClaim",
|
||||
"PersistentVolume",
|
||||
"StorageClass",
|
||||
"ConfigMap",
|
||||
"Secret",
|
||||
"ServiceAccount",
|
||||
"PodDisruptionBudget",
|
||||
"PodSecurityPolicy",
|
||||
"LimitRange",
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ func TestKindSorter(t *testing.T) {
|
|||
Head: &SimpleHead{Kind: "ClusterRoleBindingList"},
|
||||
},
|
||||
{
|
||||
Name: "e",
|
||||
Name: "f",
|
||||
Head: &SimpleHead{Kind: "ConfigMap"},
|
||||
},
|
||||
{
|
||||
|
|
@ -84,11 +84,11 @@ func TestKindSorter(t *testing.T) {
|
|||
Head: &SimpleHead{Kind: "NetworkPolicy"},
|
||||
},
|
||||
{
|
||||
Name: "f",
|
||||
Name: "g",
|
||||
Head: &SimpleHead{Kind: "PersistentVolume"},
|
||||
},
|
||||
{
|
||||
Name: "g",
|
||||
Name: "h",
|
||||
Head: &SimpleHead{Kind: "PersistentVolumeClaim"},
|
||||
},
|
||||
{
|
||||
|
|
@ -132,7 +132,7 @@ func TestKindSorter(t *testing.T) {
|
|||
Head: &SimpleHead{Kind: "RoleBindingList"},
|
||||
},
|
||||
{
|
||||
Name: "d",
|
||||
Name: "e",
|
||||
Head: &SimpleHead{Kind: "Secret"},
|
||||
},
|
||||
{
|
||||
|
|
@ -140,7 +140,7 @@ func TestKindSorter(t *testing.T) {
|
|||
Head: &SimpleHead{Kind: "Service"},
|
||||
},
|
||||
{
|
||||
Name: "h",
|
||||
Name: "d",
|
||||
Head: &SimpleHead{Kind: "ServiceAccount"},
|
||||
},
|
||||
{
|
||||
|
|
@ -166,8 +166,8 @@ func TestKindSorter(t *testing.T) {
|
|||
order KindSortOrder
|
||||
expected string
|
||||
}{
|
||||
{"install", InstallOrder, "aAbcC3de1fgh2iIjJkKlLmnopqrxstuvw!"},
|
||||
{"uninstall", UninstallOrder, "wvmutsxrqponLlKkJjIi2hgf1ed3CcbAa!"},
|
||||
{"install", InstallOrder, "aAbcC3def1gh2iIjJkKlLmnopqrxstuvw!"},
|
||||
{"uninstall", UninstallOrder, "wvmutsxrqponLlKkJjIi2hg1fed3CcbAa!"},
|
||||
} {
|
||||
var buf bytes.Buffer
|
||||
t.Run(test.description, func(t *testing.T) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue