-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Add activator DaemonSet #6624
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
Add activator DaemonSet #6624
Changes from all commits
24bcace
6df6330
9757e05
fcb1e33
b82d036
75ef082
d1c45d7
144caab
1997d8f
0c78da6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1 @@ | ||||||||
| ./core/activator-ds.yaml | ||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add trailing newline:
Suggested change
|
||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,104 @@ | ||
| # Copyright 2020 The Knative Authors | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # https://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| apiVersion: apps/v1 | ||
| kind: DaemonSet | ||
| metadata: | ||
| name: activator | ||
| namespace: knative-serving | ||
| labels: | ||
| knative.dev/release: devel | ||
| spec: | ||
| updateStrategy: | ||
| type: RollingUpdate | ||
| rollingUpdate: | ||
| maxUnavailable: 50% | ||
| selector: | ||
| matchLabels: | ||
| app: activator | ||
| role: activator | ||
| template: | ||
| metadata: | ||
| labels: | ||
| app: activator | ||
| role: activator | ||
| knative.dev/release: devel | ||
| spec: | ||
| serviceAccountName: controller | ||
| containers: | ||
| - name: activator | ||
| # This is the Go import path for the binary that is containerized | ||
| # and substituted here. | ||
| image: knative.dev/serving/cmd/activator | ||
|
|
||
| resources: | ||
| requests: | ||
| cpu: 300m | ||
| memory: 60Mi | ||
| limits: | ||
| cpu: 500m | ||
| memory: 200Mi | ||
| env: | ||
| # Run Activator with GC collection when newly generated memory is 500%. | ||
| - name: GOGC | ||
| value: "500" | ||
| - name: POD_NAME | ||
| valueFrom: | ||
| fieldRef: | ||
| fieldPath: metadata.name | ||
| - name: POD_IP | ||
| valueFrom: | ||
| fieldRef: | ||
| fieldPath: status.podIP | ||
| - name: SYSTEM_NAMESPACE | ||
| valueFrom: | ||
| fieldRef: | ||
| fieldPath: metadata.namespace | ||
| - name: CONFIG_LOGGING_NAME | ||
| value: config-logging | ||
| - name: CONFIG_OBSERVABILITY_NAME | ||
| value: config-observability | ||
| # TODO(https://github.com/knative/pkg/pull/953): Remove stackdriver specific config | ||
| - name: METRICS_DOMAIN | ||
| value: knative.dev/internal/serving | ||
|
|
||
| securityContext: | ||
| allowPrivilegeEscalation: false | ||
|
|
||
| ports: | ||
| - name: metrics | ||
| containerPort: 9090 | ||
| - name: profiling | ||
| containerPort: 8008 | ||
| - name: http1 | ||
| containerPort: 8012 | ||
| - name: h2c | ||
| containerPort: 8013 | ||
|
|
||
| readinessProbe: &probe | ||
| httpGet: | ||
| port: 8012 | ||
| httpHeaders: | ||
| - name: k-kubelet-probe | ||
| value: "activator" | ||
| livenessProbe: *probe | ||
| # The activator (often) sits on the dataplane, and may proxy long (e.g. | ||
| # streaming, websockets) requests. We give a long grace period for the | ||
| # activator to "lame duck" and drain outstanding requests before we | ||
| # forcibly terminate the pod (and outstanding connections). This value | ||
| # should be at least as large as the upper bound on the Revision's | ||
| # timeoutSeconds property to avoid servicing events disrupting | ||
| # connections. | ||
| terminationGracePeriodSeconds: 300 | ||
|
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -44,11 +44,11 @@ spec: | |
| # https://github.com/knative/serving/issues/1625#issuecomment-511930023 | ||
| resources: | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If I run the instructions here: https://github.com/knative/serving/blob/master/DEVELOPMENT.md#deploy-knative-serving won't I get both the Deployment version and DaemonSet version? Shouldn't you only run with one type? On a similar note, how will this manifest in the v0.13.0 release instructions?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It should not change anything there.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Deployment wise nothing should change. Just execute the standard collective YAML. |
||
| requests: | ||
| cpu: 300m | ||
| cpu: 100m | ||
| memory: 60Mi | ||
| limits: | ||
| cpu: 1000m | ||
| memory: 600Mi | ||
| cpu: 300m | ||
| memory: 200Mi | ||
|
|
||
| env: | ||
| # Run Activator with GC collection when newly generated memory is 500%. | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.