2017-10-22 14:55:18 +00:00
|
|
|
# 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.
|
|
|
|
|
|
|
|
# https://raw.githubusercontent.com/coreos/flannel/v0.8.0/Documentation/kube-flannel.yml
|
|
|
|
|
2020-05-17 20:14:56 +00:00
|
|
|
---
|
2017-11-02 08:13:07 +00:00
|
|
|
labels:
|
2018-04-05 21:02:08 +00:00
|
|
|
job:
|
|
|
|
node_selector_key: openstack-control-plane
|
|
|
|
node_selector_value: enabled
|
2017-11-02 08:13:07 +00:00
|
|
|
|
2017-10-22 14:55:18 +00:00
|
|
|
images:
|
|
|
|
tags:
|
|
|
|
flannel: quay.io/coreos/flannel:v0.8.0-amd64
|
2019-10-14 15:54:48 +00:00
|
|
|
dep_check: quay.io/airshipit/kubernetes-entrypoint:v1.0.0
|
2021-05-26 23:12:14 +00:00
|
|
|
image_repo_sync: docker.io/library/docker:17.07.0
|
2017-10-25 02:57:44 +00:00
|
|
|
pull_policy: IfNotPresent
|
2017-11-02 08:13:07 +00:00
|
|
|
local_registry:
|
|
|
|
active: false
|
|
|
|
exclude:
|
|
|
|
- dep_check
|
|
|
|
- image_repo_sync
|
|
|
|
- flannel
|
|
|
|
|
|
|
|
pod:
|
|
|
|
resources:
|
|
|
|
enabled: false
|
|
|
|
jobs:
|
|
|
|
image_repo_sync:
|
|
|
|
requests:
|
|
|
|
memory: "128Mi"
|
|
|
|
cpu: "100m"
|
|
|
|
limits:
|
|
|
|
memory: "1024Mi"
|
|
|
|
cpu: "2000m"
|
2017-10-22 14:55:18 +00:00
|
|
|
|
|
|
|
networking:
|
|
|
|
podSubnet: 192.168.0.0/16
|
2017-11-02 08:13:07 +00:00
|
|
|
|
|
|
|
dependencies:
|
2018-02-23 18:52:42 +00:00
|
|
|
dynamic:
|
|
|
|
common:
|
|
|
|
local_image_registry:
|
|
|
|
jobs:
|
|
|
|
- flannel-image-repo-sync
|
|
|
|
services:
|
|
|
|
- endpoint: node
|
|
|
|
service: local_image_registry
|
2018-02-23 18:35:23 +00:00
|
|
|
static:
|
|
|
|
flannel:
|
|
|
|
services: null
|
|
|
|
image_repo_sync:
|
|
|
|
services:
|
|
|
|
- endpoint: internal
|
|
|
|
service: local_image_registry
|
2017-11-02 08:13:07 +00:00
|
|
|
|
2022-06-29 14:48:52 +00:00
|
|
|
secrets:
|
|
|
|
oci_image_registry:
|
|
|
|
flannel: flannel-oci-image-registry-key
|
|
|
|
|
2017-11-02 08:13:07 +00:00
|
|
|
endpoints:
|
|
|
|
cluster_domain_suffix: cluster.local
|
|
|
|
local_image_registry:
|
|
|
|
name: docker-registry
|
|
|
|
namespace: docker-registry
|
|
|
|
hosts:
|
|
|
|
default: localhost
|
|
|
|
internal: docker-registry
|
|
|
|
node: localhost
|
|
|
|
host_fqdn_override:
|
|
|
|
default: null
|
|
|
|
port:
|
|
|
|
registry:
|
|
|
|
node: 5000
|
2022-06-29 14:48:52 +00:00
|
|
|
oci_image_registry:
|
|
|
|
name: oci-image-registry
|
|
|
|
namespace: oci-image-registry
|
|
|
|
auth:
|
|
|
|
enabled: false
|
|
|
|
flannel:
|
|
|
|
username: flannel
|
|
|
|
password: password
|
|
|
|
hosts:
|
|
|
|
default: localhost
|
|
|
|
host_fqdn_override:
|
|
|
|
default: null
|
|
|
|
port:
|
|
|
|
registry:
|
|
|
|
default: null
|
2017-11-02 08:13:07 +00:00
|
|
|
|
|
|
|
manifests:
|
|
|
|
configmap_bin: true
|
|
|
|
configmap_kube_flannel_cfg: true
|
|
|
|
daemonset_kube_flannel_ds: true
|
|
|
|
job_image_repo_sync: true
|
2022-06-29 14:48:52 +00:00
|
|
|
secret_registry: true
|
2020-05-17 20:14:56 +00:00
|
|
|
...
|