
This ps makes following changes to upgrade kubernetes from v1.17.3 to v1.18.6. - Updated all references to k8s images to 1.18.6 - Updated command options and api object and versions based on k8s 1.18 release notes: https://kubernetes.io/docs/setup/release/notes/ - Uplifted uwsgi to 2.0.19.1 to align with other airship components, and to bring in fixes and improvements. - Added build-essentials and python3-dev packages to pass the zull gate, which was looking for a c compiler. Change-Id: I1160d1e6e2f02a0524043641b9296ea39edb301e
92 lines
2.1 KiB
YAML
92 lines
2.1 KiB
YAML
# Copyright 2017 AT&T Intellectual Property. All other rights reserved.
|
|
#
|
|
# 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
|
|
#
|
|
# http://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.
|
|
# limitations under the License.
|
|
|
|
manifests:
|
|
daemonset_proxy: true
|
|
rbac: true
|
|
|
|
pod:
|
|
security_context:
|
|
proxy:
|
|
pod:
|
|
runAsUser: 65534
|
|
container:
|
|
proxy:
|
|
runAsUser: 0
|
|
privileged: true
|
|
readOnlyRootFilesystem: false
|
|
lifecycle:
|
|
upgrades:
|
|
daemonsets:
|
|
pod_replacement_strategy: RollingUpdate
|
|
proxy:
|
|
enabled: true
|
|
min_ready_seconds: 0
|
|
max_unavailable: 1
|
|
termination_grace_period:
|
|
proxy:
|
|
timeout: 30
|
|
resources:
|
|
enabled: false
|
|
proxy:
|
|
requests:
|
|
memory: "128Mi"
|
|
cpu: "100m"
|
|
limits:
|
|
memory: "1024Mi"
|
|
cpu: "2000m"
|
|
probes:
|
|
proxy:
|
|
proxy:
|
|
liveness:
|
|
enabled: true
|
|
params:
|
|
initialDelaySeconds: 15
|
|
timeoutSeconds: 15
|
|
successThreshold: 1
|
|
failureThreshold: 2
|
|
readiness:
|
|
enabled: true
|
|
params:
|
|
initialDelaySeconds: 15
|
|
timeoutSeconds: 15
|
|
successThreshold: 1
|
|
failureThreshold: 2
|
|
|
|
images:
|
|
tags:
|
|
proxy: gcr.io/google_containers/hyperkube-amd64:v1.18.6
|
|
pull_policy: "IfNotPresent"
|
|
|
|
proxy:
|
|
logging:
|
|
# Which messages to log.
|
|
# Valid values include any number from 0 to 9.
|
|
# Default 5(Trace level verbosity).
|
|
log_level: 5
|
|
|
|
command_prefix:
|
|
- /hyperkube
|
|
- kube-proxy
|
|
- --proxy-mode=iptables
|
|
- --cluster-cidr=10.97.0.0/16
|
|
|
|
network:
|
|
kubernetes_netloc: 10.96.0.1
|
|
|
|
kube_service:
|
|
host: 127.0.0.1
|
|
port: 6553
|