-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
switch to cri-o for kubernetes #1199
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Errored hosts (3)Changed hosts (0)Unaffected hosts (86)Errored hostserror for jaws.ocf.berkeley.edu
error for lockdown.ocf.berkeley.edu
error for pandemic.ocf.berkeley.edu
Unaffected hosts
|
Errored hosts (0)Changed hosts (3)Unaffected hosts (86)Changed hostsdiff for jaws.ocf.berkeley.edu, lockdown.ocf.berkeley.edu, pandemic.ocf.berkeley.edu*******************************************
+ Anchor[apt_key 2472D6D0D2F66AF87ABA8DA34D64390375060AA4 present]
*******************************************
- Anchor[apt_key 9DC858229FC7DD38854AE2D88D81803C0EBFCD88 present]
*******************************************
+ Apt::Key[crio repo key] =>
parameters =>
"ensure": "present",
"id": "2472D6D0D2F66AF87ABA8DA34D64390375060AA4",
"server": "keyserver.ubuntu.com",
"source": "https://download.opensuse.org/repositories/devel:/kubic:/libconta...
*******************************************
- Apt::Key[docker]
*******************************************
+ Apt::Setting[list-crio] =>
parameters =>
"content": "# This file is managed by Puppet. DO NOT EDIT.\n# crio\ndeb [arc...
"ensure": "present",
"notify_update": true,
"priority": 50
*******************************************
- Apt::Setting[list-docker]
*******************************************
+ Apt::Setting[list-libcontainers] =>
parameters =>
"content": "# This file is managed by Puppet. DO NOT EDIT.\n# libcontainers\...
"ensure": "present",
"notify_update": true,
"priority": 50
*******************************************
+ Apt::Source[crio] =>
parameters =>
"allow_unsigned": false,
"architecture": "amd64",
"comment": "crio",
"ensure": "present",
"include": {
},
"location": "http://download.opensuse.org/repositories/devel:/kubic:/libcont...
"notify_update": true,
"repos": "/"
*******************************************
- Apt::Source[docker]
*******************************************
+ Apt::Source[libcontainers] =>
parameters =>
"allow_unsigned": false,
"architecture": "amd64",
"comment": "libcontainers",
"ensure": "present",
"include": {
},
"location": "https://download.opensuse.org/repositories/devel:/kubic:/libcon...
"notify_update": true,
"repos": "/"
*******************************************
+ Apt_key[crio repo key] =>
parameters =>
"ensure": "present",
"id": "2472D6D0D2F66AF87ABA8DA34D64390375060AA4",
"refresh": false,
"server": "keyserver.ubuntu.com",
"source": "https://download.opensuse.org/repositories/devel:/kubic:/libconta...
*******************************************
- Apt_key[docker]
*******************************************
+ File[/etc/apt/sources.list.d/crio.list] =>
parameters =>
"backup": "main",
"content": "# This file is managed by Puppet. DO NOT EDIT.\n# crio\ndeb [arc...
"ensure": "present",
"group": "root",
"mode": "0644",
"notify": "Class[Apt::Update]",
"owner": "root"
*******************************************
- File[/etc/apt/sources.list.d/docker.list]
*******************************************
+ File[/etc/apt/sources.list.d/libcontainers.list] =>
parameters =>
"backup": "main",
"content": "# This file is managed by Puppet. DO NOT EDIT.\n# libcontainers\...
"ensure": "present",
"group": "root",
"mode": "0644",
"notify": "Class[Apt::Update]",
"owner": "root"
*******************************************
- File[/etc/containerd/config.toml]
*******************************************
+ File[/etc/crio/crio.conf] =>
parameters =>
"backup": "main",
"content": "[crio.metrics]\nenable_metrics = true\nmetrics_port = 9090\n\n# ...
"group": "root",
"mode": "0644",
"notify": [
"Service[crio]"
],
"owner": "root"
*******************************************
File[/etc/systemd/system/kubelet.service] =>
parameters =>
content =>
@@ -8,5 +8,5 @@
ExecStart=/usr/bin/kubelet --config /etc/kubernetes/kubelet.yaml \
--container-runtime=remote \
- --container-runtime-endpoint=unix:///var/run/containerd/containerd.sock \
+ --container-runtime-endpoint=unix:///var/run/crio/crio.sock \
--register-node=true \
--kubeconfig=/etc/kubernetes/kubelet.conf
*******************************************
Ocf::Systemd::Service[kubelet] =>
parameters =>
content =>
@@ -8,5 +8,5 @@
ExecStart=/usr/bin/kubelet --config /etc/kubernetes/kubelet.yaml \
--container-runtime=remote \
- --container-runtime-endpoint=unix:///var/run/containerd/containerd.sock \
+ --container-runtime-endpoint=unix:///var/run/crio/crio.sock \
--register-node=true \
--kubeconfig=/etc/kubernetes/kubelet.conf
*******************************************
- Package[containerd.io]
*******************************************
+ Package[cri-o-runc] =>
parameters =>
"allow_virtual": false
*******************************************
+ Package[cri-o] =>
parameters =>
"allow_virtual": false
*******************************************
- Service[containerd]
*******************************************
+ Service[crio] =>
parameters =>
"hasrestart": true,
"hasstatus": true
******************************************* Unaffected hosts
|
(ethan says he approves this) |
I saw you cross-linked my issue as an example of cri-o adoption. However, we adopted containerd just fyi. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Here's why we're switching from containerd...