Skip to content

Commit

Permalink
feat: ability to ignore kubeadm upgrade errors (#964)
Browse files Browse the repository at this point in the history
  • Loading branch information
emosbaugh authored May 3, 2023
1 parent e0f7ec0 commit 20d0c4e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/markdown-pages/install-with-kurl/advanced-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -274,4 +274,14 @@ The install scripts are idempotent. Re-run the scripts with different flags to c
<code>curl https://kurl.sh/latest | sudo bash -s ekco-enable-internal-load-balancer</code>
</td>
</tr>
<tr>
<td><code>kubernetes-upgrade-ignore-preflight-errors</code></td>
<td>Bypass kubeadm upgrade preflight errors and warnings. See the <a href="https://kubernetes.io/docs/reference/setup-tools/kubeadm/kubeadm-upgrade/#cmd-upgrade-plan">kubeadm upgrade</a> documentation for more information.
<br/>
<br/>
<strong>Example:</strong>
<br/>
<code>curl https://kurl.sh/latest | sudo bash -s kubernetes-upgrade-ignore-preflight-errors=CoreDNSUnsupportedPlugins</code>
</td>
</tr>
</table>
5 changes: 5 additions & 0 deletions static/versionDetails.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,11 @@
"flag": "clusterName",
"description": "The name of the Kubernetes cluster (default \"kubernetes\").",
"type": "string"
},
{
"flag": "upgradeIgnorePreflightErrors",
"description": "Bypass kubeadm upgrade preflight errors and warnings as described in <a target=\"blank\" href=\"https://kubernetes.io/docs/reference/setup-tools/kubeadm/kubeadm-upgrade/#cmd-upgrade-plan\">kubeadm upgrade</a> section of the Kubernetes documentation.",
"type": "string"
}
],
"flannel": [
Expand Down

1 comment on commit 20d0c4e

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.