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

Azure broker: add kube req and resource params for svc-cat/catalog pa… #863

Merged
merged 1 commit into from
Jun 10, 2020
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
17 changes: 14 additions & 3 deletions xml/cap_depl_aks.xml
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,10 @@ suse https://kubernetes-charts.suse.com/
This section describes how to use it with your &productname; deployment.
</para>

<para>
Usage of the broker requires a cluster running &kube; 1.15 or earlier.
</para>

<para>
Start by extracting and setting a batch of environment variables:
</para>
Expand Down Expand Up @@ -320,7 +324,10 @@ suse https://kubernetes-charts.suse.com/
</screen>

<para>
Add the necessary &helm; repositories and download the charts:
Add and install the catalog &helm; chart. The CPU and memory's requests and
limits must be increased, otherewise the installation fails due to a
<literal>OOMKilled</literal> state. This example, increases these to double
the default:
</para>

<screen>&prompt.user;helm repo add svc-cat https://svc-catalog-charts.storage.googleapis.com
Expand All @@ -330,9 +337,13 @@ suse https://kubernetes-charts.suse.com/
&prompt.user;kubectl create namespace <replaceable>catalog</replaceable>

&prompt.user;helm install <replaceable>catalog</replaceable> svc-cat/catalog \
--namespace <replaceable>catalog</replaceable> \
--namespace catalog \
--set controllerManager.healthcheck.enabled=false \
--set apiserver.healthcheck.enabled=false
--set apiserver.healthcheck.enabled=false \
--set controllerManager.resources.requests.cpu=200m \
--set controllerManager.resources.requests.memory=40Mi \
--set controllerManager.resources.limits.cpu=200m \
--set controllerManager.resources.limits.memory=40Mi

&prompt.user;kubectl get apiservice

Expand Down