mirror of https://github.com/k3s-io/k3s
Merge pull request #57532 from mtaufen/fix-hyphen-dkcfg-test
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. dynamic config test: use a hyphen between the config name and the unique suffix These are painful to read right now due to the lack of hyphen. ```release-note NONE ```pull/6/head
commit
fb4dc98016
|
@ -302,7 +302,7 @@ func newKubeletConfigMap(name string, internalKC *kubeletconfig.KubeletConfigura
|
||||||
framework.ExpectNoError(err)
|
framework.ExpectNoError(err)
|
||||||
|
|
||||||
cmap := &apiv1.ConfigMap{
|
cmap := &apiv1.ConfigMap{
|
||||||
ObjectMeta: metav1.ObjectMeta{GenerateName: name},
|
ObjectMeta: metav1.ObjectMeta{GenerateName: name + "-"},
|
||||||
Data: map[string]string{
|
Data: map[string]string{
|
||||||
"kubelet": string(data),
|
"kubelet": string(data),
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue