mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-25 12:43:23 +00:00
Merge pull request #65492 from agau4779/add_neg_annotation
Automatic merge from submit-queue (batch tested with PRs 65492, 65516, 65447). 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>. [GCE] update NEGAnnotation **What this PR does / why we need it**: Updates the NEG annotation in a few more places in the e2e test for Ingress. ```release-note NONE ```
This commit is contained in:
commit
9090832793
@ -491,7 +491,7 @@ var _ = SIGDescribe("Loadbalancing: L7", func() {
|
|||||||
It("should conform to Ingress spec", func() {
|
It("should conform to Ingress spec", func() {
|
||||||
jig.PollInterval = 5 * time.Second
|
jig.PollInterval = 5 * time.Second
|
||||||
conformanceTests = framework.CreateIngressComformanceTests(jig, ns, map[string]string{
|
conformanceTests = framework.CreateIngressComformanceTests(jig, ns, map[string]string{
|
||||||
framework.NEGAnnotation: "true",
|
framework.NEGAnnotation: `{"ingress": true}`,
|
||||||
})
|
})
|
||||||
for _, t := range conformanceTests {
|
for _, t := range conformanceTests {
|
||||||
By(t.EntryLog)
|
By(t.EntryLog)
|
||||||
@ -517,7 +517,7 @@ var _ = SIGDescribe("Loadbalancing: L7", func() {
|
|||||||
svcList, err := f.ClientSet.CoreV1().Services(ns).List(metav1.ListOptions{})
|
svcList, err := f.ClientSet.CoreV1().Services(ns).List(metav1.ListOptions{})
|
||||||
Expect(err).NotTo(HaveOccurred())
|
Expect(err).NotTo(HaveOccurred())
|
||||||
for _, svc := range svcList.Items {
|
for _, svc := range svcList.Items {
|
||||||
svc.Annotations[framework.NEGAnnotation] = "false"
|
svc.Annotations[framework.NEGAnnotation] = `{"ingress": false}`
|
||||||
_, err = f.ClientSet.CoreV1().Services(ns).Update(&svc)
|
_, err = f.ClientSet.CoreV1().Services(ns).Update(&svc)
|
||||||
Expect(err).NotTo(HaveOccurred())
|
Expect(err).NotTo(HaveOccurred())
|
||||||
}
|
}
|
||||||
@ -530,7 +530,7 @@ var _ = SIGDescribe("Loadbalancing: L7", func() {
|
|||||||
svcList, err = f.ClientSet.CoreV1().Services(ns).List(metav1.ListOptions{})
|
svcList, err = f.ClientSet.CoreV1().Services(ns).List(metav1.ListOptions{})
|
||||||
Expect(err).NotTo(HaveOccurred())
|
Expect(err).NotTo(HaveOccurred())
|
||||||
for _, svc := range svcList.Items {
|
for _, svc := range svcList.Items {
|
||||||
svc.Annotations[framework.NEGAnnotation] = "true"
|
svc.Annotations[framework.NEGAnnotation] = `{"ingress": true}`
|
||||||
_, err = f.ClientSet.CoreV1().Services(ns).Update(&svc)
|
_, err = f.ClientSet.CoreV1().Services(ns).Update(&svc)
|
||||||
Expect(err).NotTo(HaveOccurred())
|
Expect(err).NotTo(HaveOccurred())
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user