Compare commits
2 Commits
test-preco
...
test-CI
Author | SHA1 | Date | |
---|---|---|---|
61064c372a | |||
5616a4a3ee |
@ -1,4 +1,4 @@
|
|||||||
# Contributing guidelines
|
test # Contributing guidelines
|
||||||
|
|
||||||
## How to become a contributor and submit your own code
|
## How to become a contributor and submit your own code
|
||||||
|
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
TEST CI
|
|
||||||
|
|
||||||
# Deploy a Production Ready Kubernetes Cluster
|
# Deploy a Production Ready Kubernetes Cluster
|
||||||
|
|
||||||

|

|
||||||
@ -144,7 +142,7 @@ vagrant up
|
|||||||
|
|
||||||
- **Flatcar Container Linux by Kinvolk**
|
- **Flatcar Container Linux by Kinvolk**
|
||||||
- **Debian** Bookworm, Bullseye, Buster
|
- **Debian** Bookworm, Bullseye, Buster
|
||||||
- **Ubuntu** 20.04, 22.04
|
- **Ubuntu** 20.04, 22.04, 24.04
|
||||||
- **CentOS/RHEL** 7, [8, 9](docs/operating_systems/centos.md#centos-8)
|
- **CentOS/RHEL** 7, [8, 9](docs/operating_systems/centos.md#centos-8)
|
||||||
- **Fedora** 37, 38
|
- **Fedora** 37, 38
|
||||||
- **Fedora CoreOS** (see [fcos Note](docs/operating_systems/fcos.md))
|
- **Fedora CoreOS** (see [fcos Note](docs/operating_systems/fcos.md))
|
||||||
@ -164,7 +162,7 @@ Note: Upstart/SysV init based OS types are not supported.
|
|||||||
- Core
|
- Core
|
||||||
- [kubernetes](https://github.com/kubernetes/kubernetes) v1.29.5
|
- [kubernetes](https://github.com/kubernetes/kubernetes) v1.29.5
|
||||||
- [etcd](https://github.com/etcd-io/etcd) v3.5.12
|
- [etcd](https://github.com/etcd-io/etcd) v3.5.12
|
||||||
- [docker](https://www.docker.com/) v24.0 (see [Note](#container-runtime-notes))
|
- [docker](https://www.docker.com/) v26.1
|
||||||
- [containerd](https://containerd.io/) v1.7.16
|
- [containerd](https://containerd.io/) v1.7.16
|
||||||
- [cri-o](http://cri-o.io/) v1.29.1 (experimental: see [CRI-O Note](docs/CRI/cri-o.md). Only on fedora, ubuntu and centos based OS)
|
- [cri-o](http://cri-o.io/) v1.29.1 (experimental: see [CRI-O Note](docs/CRI/cri-o.md). Only on fedora, ubuntu and centos based OS)
|
||||||
- Network Plugin
|
- Network Plugin
|
||||||
@ -199,7 +197,6 @@ Note: Upstart/SysV init based OS types are not supported.
|
|||||||
|
|
||||||
## Container Runtime Notes
|
## Container Runtime Notes
|
||||||
|
|
||||||
- Supported Docker versions are 18.09, 19.03, 20.10, 23.0 and 24.0. The *recommended* Docker version is 24.0. `Kubelet` might break on docker's non-standard version numbering (it no longer uses semantic versioning). To ensure auto-updates don't break your cluster look into e.g. the YUM ``versionlock`` plugin or ``apt pin``).
|
|
||||||
- The cri-o version should be aligned with the respective kubernetes version (i.e. kube_version=1.20.x, crio_version=1.20)
|
- The cri-o version should be aligned with the respective kubernetes version (i.e. kube_version=1.20.x, crio_version=1.20)
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
@ -2,9 +2,9 @@ ansible==9.5.1
|
|||||||
cryptography==42.0.7
|
cryptography==42.0.7
|
||||||
jinja2==3.1.4
|
jinja2==3.1.4
|
||||||
jmespath==1.0.1
|
jmespath==1.0.1
|
||||||
jsonschema==4.22.0
|
|
||||||
MarkupSafe==2.1.5
|
MarkupSafe==2.1.5
|
||||||
netaddr==1.2.1
|
netaddr==1.2.1
|
||||||
pbr==6.0.0
|
pbr==6.0.0
|
||||||
ruamel.yaml==0.18.6
|
ruamel.yaml==0.18.6
|
||||||
ruamel.yaml.clib==0.2.8
|
ruamel.yaml.clib==0.2.8
|
||||||
|
jsonschema==4.22.0
|
||||||
|
@ -107,3 +107,4 @@ oom_score = {{ containerd_oom_score }}
|
|||||||
sampling_ratio = {{ containerd_tracing_sampling_ratio }}
|
sampling_ratio = {{ containerd_tracing_sampling_ratio }}
|
||||||
service_name = "{{ containerd_tracing_service_name }}"
|
service_name = "{{ containerd_tracing_service_name }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
@ -32,3 +32,4 @@ data:
|
|||||||
- name: helper-pod
|
- name: helper-pod
|
||||||
image: "{{ local_path_provisioner_helper_image_repo }}:{{ local_path_provisioner_helper_image_tag }}"
|
image: "{{ local_path_provisioner_helper_image_repo }}:{{ local_path_provisioner_helper_image_tag }}"
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
|
|
||||||
|
@ -11,3 +11,4 @@ subjects:
|
|||||||
- kind: ServiceAccount
|
- kind: ServiceAccount
|
||||||
name: {{ node_feature_discovery_worker_sa_name }}
|
name: {{ node_feature_discovery_worker_sa_name }}
|
||||||
namespace: {{ node_feature_discovery_namespace }}
|
namespace: {{ node_feature_discovery_namespace }}
|
||||||
|
|
||||||
|
@ -102,3 +102,4 @@ data:
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -102,3 +102,4 @@ spec:
|
|||||||
protocol: TCP
|
protocol: TCP
|
||||||
targetPort: 4244
|
targetPort: 4244
|
||||||
internalTrafficPolicy: Local
|
internalTrafficPolicy: Local
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ ara[server]==1.7.1
|
|||||||
dopy==0.3.7
|
dopy==0.3.7
|
||||||
molecule==24.2.1
|
molecule==24.2.1
|
||||||
molecule-plugins[vagrant]==23.5.3
|
molecule-plugins[vagrant]==23.5.3
|
||||||
pytest-testinfra==10.1.0
|
|
||||||
python-vagrant==1.0.0
|
python-vagrant==1.0.0
|
||||||
|
pytest-testinfra==10.1.0
|
||||||
tox==4.15.0
|
tox==4.15.0
|
||||||
tzdata==2024.1
|
|
||||||
yamllint==1.35.1
|
yamllint==1.35.1
|
||||||
|
tzdata==2024.1
|
||||||
|
Reference in New Issue
Block a user