-
Notifications
You must be signed in to change notification settings - Fork 817
pipelines: Added proxy documentation #4073
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
Conversation
Skipping CI for Draft Pull Request. |
Signed-off-by: Helber Belmiro <[email protected]>
content/en/docs/components/pipelines/operator-guides/server-config.md
Outdated
Show resolved
Hide resolved
valueFrom: | ||
configMapKeyRef: | ||
key: dbType | ||
name: pipeline-install-config | ||
- name: DBCONFIG_MYSQLCONFIG_USER | ||
valueFrom: | ||
secretKeyRef: | ||
key: username | ||
name: mysql-secret | ||
- name: DBCONFIG_MYSQLCONFIG_PASSWORD | ||
valueFrom: | ||
secretKeyRef: | ||
key: password | ||
name: mysql-secret | ||
- name: DBCONFIG_MYSQLCONFIG_DBNAME | ||
valueFrom: | ||
configMapKeyRef: | ||
key: pipelineDb | ||
name: pipeline-install-config | ||
- name: DBCONFIG_MYSQLCONFIG_HOST | ||
valueFrom: | ||
configMapKeyRef: | ||
key: mysqlHost | ||
name: pipeline-install-config | ||
- name: DBCONFIG_MYSQLCONFIG_PORT | ||
valueFrom: | ||
configMapKeyRef: | ||
key: mysqlPort | ||
name: pipeline-install-config | ||
- name: OBJECTSTORECONFIG_ACCESSKEY | ||
valueFrom: | ||
secretKeyRef: | ||
key: accesskey | ||
name: mlpipeline-minio-artifact | ||
- name: OBJECTSTORECONFIG_SECRETACCESSKEY | ||
valueFrom: | ||
secretKeyRef: | ||
key: secretkey | ||
name: mlpipeline-minio-artifact | ||
image: kind-registry:5000/apiserver:latest | ||
imagePullPolicy: IfNotPresent | ||
livenessProbe: | ||
exec: | ||
command: | ||
- wget | ||
- -q | ||
- -S | ||
- -O | ||
- '-' | ||
- http://localhost:8888/apis/v1beta1/healthz | ||
initialDelaySeconds: 3 | ||
periodSeconds: 5 | ||
timeoutSeconds: 2 | ||
name: ml-pipeline-api-server | ||
ports: | ||
- containerPort: 8888 | ||
name: http | ||
- containerPort: 8887 | ||
name: grpc | ||
readinessProbe: | ||
exec: | ||
command: | ||
- wget | ||
- -q | ||
- -S | ||
- -O | ||
- '-' | ||
- http://localhost:8888/apis/v1beta1/healthz | ||
initialDelaySeconds: 3 | ||
periodSeconds: 5 | ||
timeoutSeconds: 2 | ||
resources: | ||
requests: | ||
cpu: 250m | ||
memory: 500Mi | ||
securityContext: | ||
allowPrivilegeEscalation: false | ||
capabilities: | ||
drop: | ||
- ALL | ||
runAsGroup: 0 | ||
runAsNonRoot: true | ||
runAsUser: 1000 | ||
startupProbe: | ||
exec: | ||
command: | ||
- wget | ||
- -q | ||
- -S | ||
- -O | ||
- '-' | ||
- http://localhost:8888/apis/v1beta1/healthz | ||
failureThreshold: 12 | ||
periodSeconds: 5 | ||
timeoutSeconds: 2 | ||
securityContext: | ||
seccompProfile: | ||
type: RuntimeDefault | ||
serviceAccountName: ml-pipeline |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we can remove this section because we don't want to have to keep this up to date as we change the manifests in the KFP repo.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed.
…nfig.md Co-authored-by: Matt Prahl <[email protected]> Signed-off-by: Helber Belmiro <[email protected]>
Signed-off-by: Helber Belmiro <[email protected]>
/lgtm |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: hbelmiro, mprahl The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Checklist:
Description of your changes:
This PR adds the documentation for proxy configuration.
The feature implementation is in:
Issue
Closes: kubeflow/pipelines#11744
Labels
/area pipelines