You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Configuration for probot-stale - https://github.com/probot/stale
2
+
3
+
# Number of days of inactivity before an Issue or Pull Request becomes stale
4
+
daysUntilStale: 90
5
+
6
+
# Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
7
+
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
8
+
daysUntilClose: 30
9
+
10
+
# Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled)
11
+
onlyLabels: []
12
+
13
+
# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
14
+
exemptLabels:
15
+
- pinned
16
+
- security
17
+
- planned
18
+
19
+
# Set to true to ignore issues in a project (defaults to false)
20
+
exemptProjects: false
21
+
22
+
# Set to true to ignore issues in a milestone (defaults to false)
23
+
exemptMilestones: false
24
+
25
+
# Set to true to ignore issues with an assignee (defaults to false)
26
+
exemptAssignees: false
27
+
28
+
# Label to use when marking as stale
29
+
staleLabel: stale
30
+
31
+
# Limit the number of actions per hour, from 1-30. Default is 30
32
+
limitPerRun: 30
33
+
34
+
pulls:
35
+
markComment: |-
36
+
This pull request has been marked 'stale' due to lack of recent activity. If there is no further activity, the PR will be closed in another 30 days. Thank you for your contribution!
37
+
38
+
Please read [this blog post](https://www.jeffgeerling.com/blog/2020/enabling-stale-issue-bot-on-my-github-repositories) to see the reasons why I mark pull requests as stale.
39
+
40
+
unmarkComment: >-
41
+
This pull request is no longer marked for closure.
42
+
43
+
closeComment: >-
44
+
This pull request has been closed due to inactivity. If you feel this is in error, please reopen the pull request or file a new PR with the relevant details.
45
+
46
+
issues:
47
+
markComment: |-
48
+
This issue has been marked 'stale' due to lack of recent activity. If there is no further activity, the issue will be closed in another 30 days. Thank you for your contribution!
49
+
50
+
Please read [this blog post](https://www.jeffgeerling.com/blog/2020/enabling-stale-issue-bot-on-my-github-repositories) to see the reasons why I mark issues as stale.
51
+
52
+
unmarkComment: >-
53
+
This issue is no longer marked for closure.
54
+
55
+
closeComment: >-
56
+
This issue has been closed due to inactivity. If you feel this is in error, please reopen the issue or file a new issue with the relevant details.
Copy file name to clipboardExpand all lines: README.md
+19-6
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,8 @@ Available variables are listed below, along with default values (see `defaults/m
24
24
25
25
Kubernetes packages to be installed on the server. You can either provide a list of package names, or set `name` and `state` to have more control over whether the package is `present`, `absent`, `latest`, etc.
26
26
27
-
kubernetes_version: '1.13'
28
-
kubernetes_version_rhel_package: '1.13.1'
27
+
kubernetes_version: '1.16'
28
+
kubernetes_version_rhel_package: '1.16.4'
29
29
30
30
The minor version of Kubernetes to install. The plain `kubernetes_version` is used to pin an apt package version on Debian, and as the Kubernetes version passed into the `kubeadm init` command (see `kubernetes_version_kubeadm`). The `kubernetes_version_rhel_package` variable must be a specific Kubernetes release, and is used to pin the version on Red Hat / CentOS servers.
31
31
@@ -42,6 +42,10 @@ Extra args to pass to `kubelet` during startup. E.g. to allow `kubelet` to start
42
42
43
43
Extra args to pass to `kubeadm init` during K8s control plane initialization. E.g. to specify extra Subject Alternative Names for API server certificate, set this to: `"--apiserver-cert-extra-sans my-custom.host"`
44
44
45
+
kubernetes_join_command_extra_opts: ""
46
+
47
+
Extra args to pass to the generated `kubeadm join` command during K8s node initialization. E.g. to ignore certain preflight errors like swap being enabled, set this to: `--ignore-preflight-errors=Swap`
48
+
45
49
kubernetes_allow_pods_on_master: true
46
50
47
51
Whether to remove the taint that denies pods from being deployed to the Kubernetes master. If you have a single-node cluster, this should definitely be `True`. Otherwise, set to `False` if you want a dedicated Kubernetes master which doesn't run any other pods.
@@ -51,12 +55,21 @@ Whether to remove the taint that denies pods from being deployed to the Kubernet
51
55
52
56
Whether to enable the Kubernetes web dashboard UI (only accessible on the master itself, or proxied), and the file containing the web dashboard UI manifest.
53
57
54
-
kubernetes_pod_network_cidr: '10.244.0.0/16'
58
+
kubernetes_pod_network:
59
+
# Flannel CNI.
60
+
cni: 'flannel'
61
+
cidr: '10.244.0.0/16'
62
+
# Calico CNI.
63
+
# cni: 'calico'
64
+
# cidr: '192.168.0.0/16'
65
+
66
+
This role currently supports `flannel` (default) or `calico` for cluster pod networking. Choose one or the other for your cluster; converting between the two is not done automatically and could result in broken networking, and should be done outside of this role.
Options passed to `kubeadm init` when initializing the Kubernetes master. The `apiserver_advertise_address` defaults to `ansible_default_ipv4.address` if it's left empty.
72
+
Options passed to `kubeadm init` when initializing the Kubernetes master. The `kubernetes_apiserver_advertise_address` defaults to `ansible_default_ipv4.address` if it's left empty.
0 commit comments