Skip to content

Commit

Permalink
Merge pull request kubernetes#85628 from lubinsz/pr_kubeadm_proxy
Browse files Browse the repository at this point in the history
Adding KubeProxyConfigMap19 checking in test-e2e-kubeadm
  • Loading branch information
k8s-ci-robot authored Nov 28, 2019
2 parents 9474154 + 1431605 commit 3dcc1a1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/e2e_kubeadm/proxy_addon_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ const (
kubeProxyServiceAccountName = "kube-proxy"
kubeProxyConfigMap = "kube-proxy"
kubeProxyConfigMapKey = "config.conf"
kubeProxyConfigMapKeyKubeconfig = "kubeconfig.conf"
kubeProxyClusterRoleName = "system:node-proxier"
kubeProxyClusterRoleBindingName = "kubeadm:node-proxier"
kubeProxyRoleName = "kube-proxy"
Expand Down Expand Up @@ -75,6 +76,7 @@ var _ = Describe("proxy addon", func() {
cm := GetConfigMap(f.ClientSet, kubeSystemNamespace, kubeProxyConfigMap)

gomega.Expect(cm.Data).To(gomega.HaveKey(kubeProxyConfigMapKey))
gomega.Expect(cm.Data).To(gomega.HaveKey(kubeProxyConfigMapKeyKubeconfig))
})

ginkgo.It("should have related Role and RoleBinding", func() {
Expand Down

0 comments on commit 3dcc1a1

Please sign in to comment.