Closed rperper closed 1 year ago
@rperper yes as number of replica is one so there will be only one pod active at a time.
/kind support
The Kubernetes project currently lacks enough contributors to adequately respond to all issues.
This bot triages un-triaged issues according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/remove-lifecycle stale
/close
Please send feedback to sig-contributor-experience at kubernetes/community.
/lifecycle stale
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues.
This bot triages un-triaged issues according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/remove-lifecycle rotten
/close
Please send feedback to sig-contributor-experience at kubernetes/community.
/lifecycle rotten
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs.
This bot triages issues according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/reopen
/remove-lifecycle rotten
Please send feedback to sig-contributor-experience at kubernetes/community.
/close not-planned
@k8s-triage-robot: Closing this issue, marking it as "Not Planned".
I am working through certification for our Kubernetes Ingress LoadBalancer and it passes all tests except for the load-balancing test. In that test it runs 1000 HTTP GET requests and expects to get responses from 10 different pods using the echo server image. However, when we run the test with the command line:
It appears that the load-balancing test creates the following Ingress, Service and Deployment:
All of which works to go to the backend, but since there's only one replica deployed, it will always use the same one pod deployed, thus failing the test
expected 10 different POD IP addresses/FQDN for status code 200 but 1 was returned
. Am I misunderstanding something or doing something wrong? Thanks!