Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

single replica ambassadoar #759

Merged
merged 1 commit into from
Aug 6, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion testing/scripts/k8s_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ def get_seldon_version():

# Not using latest Ambassador due to gRPC issue. https://github.com/datawire/ambassador/issues/504
def create_ambassador():
run("helm install stable/ambassador --name ambassador --set crds.keep=false --namespace seldon", shell=True)
# single-replica ambassador to avoid intermittent 503s as per https://github.com/datawire/ambassador/issues/1461
run("helm install stable/ambassador --name ambassador --set crds.keep=false --namespace seldon --set replicaCount=1", shell=True)
run("kubectl rollout status deployment.apps/ambassador --namespace seldon", shell=True)

def create_seldon_clusterwide_helm(request, version):
Expand Down