All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-virtualization][PATCH 1/2] k3s: Update k3s service configuration
@ 2021-10-19 15:12 Kamil Dziezyk
  2021-10-19 15:12 ` [meta-virtualization][PATCH 2/2] k3s: Add xt-statistic kernel module to rrecommends Kamil Dziezyk
  2021-10-21 23:22 ` [meta-virtualization][PATCH 1/2] k3s: Update k3s service configuration Bruce Ashfield
  0 siblings, 2 replies; 8+ messages in thread
From: Kamil Dziezyk @ 2021-10-19 15:12 UTC (permalink / raw)
  To: meta-virtualization; +Cc: nd

Update k3s.service with the latest changes from install.sh script.
Add k3s-killall.sh script to stop all of the K3s containers and reset
the containerd state.

The killall script cleans up containers, K3s directories, and networking
components while also removing the iptables chain with all the associated
rules. The cluster data will not be deleted.

Signed-off-by: Kamil Dziezyk <kamil.dziezyk@arm.com>
Change-Id: If1794367cabfc18fc8e3ecaf26badd4d0bc25114
---
 recipes-containers/k3s/k3s/k3s-killall.sh | 82 +++++++++++++++++++++++
 recipes-containers/k3s/k3s/k3s.service    | 12 +++-
 recipes-containers/k3s/k3s_git.bb         |  2 +
 3 files changed, 95 insertions(+), 1 deletion(-)
 create mode 100644 recipes-containers/k3s/k3s/k3s-killall.sh

diff --git a/recipes-containers/k3s/k3s/k3s-killall.sh b/recipes-containers/k3s/k3s/k3s-killall.sh
new file mode 100644
index 0000000..9e72615
--- /dev/null
+++ b/recipes-containers/k3s/k3s/k3s-killall.sh
@@ -0,0 +1,82 @@
+#!/bin/sh
+
+# Based on: k3s-killall.sh installed when running Rancher Lab's K3S install.sh
+# In open-source project: https://github.com/k3s-io/k3s
+#
+# Original file: Copyright (c) 2021 Rancher Labs and Contributors.
+# Modifications: Copyright (c) 2021 Arm Limited and Contributors. All rights reserved.
+#
+# Modifications:
+# - Change systemd service directory location
+# - Fix PID parsing to run on core image
+# - Remove service stopping code (as this is intended to run as part of service
+#   stop)
+# - Changes to resolve warnings from the ShellCheck static analysis tool
+#
+# SPDX-License-Identifier: Apache License 2.0
+
+[ "$(id -u)" -eq 0 ] || exec sudo "$0" "$@"
+
+for bin in /var/lib/rancher/k3s/data/**/bin/; do
+    [ -d "$bin" ] && export PATH=$PATH:$bin:$bin/aux
+done
+
+set -x
+
+pschildren() {
+    ps -e -o ppid= -o pid= | sed -e 's/^\s*//g; s/\s\s*/\t/g;' | grep -w "^$1" | cut -f2
+}
+
+pstree() {
+    for pid in "$@"; do
+        echo "$pid"
+        for child in $(pschildren "$pid"); do
+            pstree "$child"
+        done
+    done
+}
+
+killtree() {
+    while read -r pid; do
+        if [ -n "${pid}" ]; then
+                kill -9 "${pid}" 2>/dev/null
+        fi
+    done <<EOF
+$({ set +x; } 2>/dev/null; pstree "$@"; set -x;)
+EOF
+}
+
+getshims() {
+    ps -e -o pid= -o args= | sed -e 's/^ *//; s/\s\s*/\t/;' | grep -w '[^/]*/bin/containerd-shim' | cut -f1
+}
+
+killtree "$({ set +x; } 2>/dev/null; getshims; set -x)"
+
+# shellcheck disable=SC2016
+do_unmount_and_remove() {
+    set +x
+    while read -r _ path _; do
+        case "$path" in $1*) echo "$path" ;; esac
+    done < /proc/self/mounts | sort -r | xargs -r -t -n 1 sh -c 'umount "$0" && rm -rf "$0"'
+    set -x
+}
+
+do_unmount_and_remove '/run/k3s'
+do_unmount_and_remove '/var/lib/rancher/k3s'
+do_unmount_and_remove '/var/lib/kubelet/pods'
+do_unmount_and_remove '/var/lib/kubelet/plugins'
+do_unmount_and_remove '/run/netns/cni-'
+
+# Remove CNI namespaces
+ip netns show 2>/dev/null | grep cni- | xargs -r -t -n 1 ip netns delete
+
+# Delete network interface(s) that match 'master cni0'
+ip link show 2>/dev/null | grep 'master cni0' | while read -r _ iface _; do
+    iface=${iface%%@*}
+    [ -z "$iface" ] || ip link delete "$iface"
+done
+ip link delete cni0
+ip link delete flannel.1
+ip link delete flannel-v6.1
+rm -rf /var/lib/cni/
+iptables-save | grep -v KUBE- | grep -v CNI- | iptables-restore
diff --git a/recipes-containers/k3s/k3s/k3s.service b/recipes-containers/k3s/k3s/k3s.service
index 34c7a80..33d3ee7 100644
--- a/recipes-containers/k3s/k3s/k3s.service
+++ b/recipes-containers/k3s/k3s/k3s.service
@@ -4,12 +4,17 @@ Description=Lightweight Kubernetes
 Documentation=https://k3s.io
 Requires=containerd.service
 After=containerd.service
+After=network-online.target
+Wants=network-online.target
 
 [Install]
 WantedBy=multi-user.target
 
 [Service]
 Type=notify
+EnvironmentFile=-/etc/default/%N
+EnvironmentFile=-/etc/sysconfig/%N
+EnvironmentFile=-/etc/systemd/system/k3s.service.env
 KillMode=process
 Delegate=yes
 # Having non-zero Limit*s causes performance problems due to accounting overhead
@@ -21,7 +26,12 @@ TasksMax=infinity
 TimeoutStartSec=0
 Restart=always
 RestartSec=5s
+ExecStartPre=/bin/sh -xc '! systemctl is-enabled --quiet nm-cloud-setup.service'
 ExecStartPre=-/sbin/modprobe br_netfilter
 ExecStartPre=-/sbin/modprobe overlay
 ExecStart=/usr/local/bin/k3s server
-
+# Avoid any delay due to this service when the system is rebooting or shutting
+# down by using the k3s-killall.sh script to kill all of the running k3s
+# services and containers
+ExecStopPost=/bin/sh -c "if systemctl is-system-running | grep -i \
+                           'stopping'; then /usr/local/bin/k3s-killall.sh; fi"
diff --git a/recipes-containers/k3s/k3s_git.bb b/recipes-containers/k3s/k3s_git.bb
index 5971dde..0300fc3 100644
--- a/recipes-containers/k3s/k3s_git.bb
+++ b/recipes-containers/k3s/k3s_git.bb
@@ -11,6 +11,7 @@ SRC_URI = "git://github.com/rancher/k3s.git;branch=release-1.22;name=k3s \
            file://k3s-clean \
            file://cni-containerd-net.conf \
            file://0001-Finding-host-local-in-usr-libexec.patch;patchdir=src/import \
+           file://k3s-killall.sh \
           "
 SRC_URI[k3s.md5sum] = "363d3a08dc0b72ba6e6577964f6e94a5"
 SRCREV_k3s = "737f722315b9832e9180fa232253d28ae1f2272f"
@@ -60,6 +61,7 @@ do_install() {
         # ln -sr "${D}/${BIN_PREFIX}/bin/k3s" "${D}${BIN_PREFIX}/bin/ctr"
         ln -sr "${D}/${BIN_PREFIX}/bin/k3s" "${D}${BIN_PREFIX}/bin/kubectl"
         install -m 755 "${WORKDIR}/k3s-clean" "${D}${BIN_PREFIX}/bin"
+        install -m 755 "${WORKDIR}/k3s-killall.sh" "${D}${BIN_PREFIX}/bin"
 
         if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
                 install -D -m 0644 "${WORKDIR}/k3s.service" "${D}${systemd_system_unitdir}/k3s.service"
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [meta-virtualization][PATCH 2/2] k3s: Add xt-statistic kernel module to rrecommends
  2021-10-19 15:12 [meta-virtualization][PATCH 1/2] k3s: Update k3s service configuration Kamil Dziezyk
@ 2021-10-19 15:12 ` Kamil Dziezyk
  2021-10-21 23:22 ` [meta-virtualization][PATCH 1/2] k3s: Update k3s service configuration Bruce Ashfield
  1 sibling, 0 replies; 8+ messages in thread
From: Kamil Dziezyk @ 2021-10-19 15:12 UTC (permalink / raw)
  To: meta-virtualization; +Cc: nd

Include the xt-statistic kernel module required by K3S for iptables
configuration.

Signed-off-by: Kamil Dziezyk <kamil.dziezyk@arm.com>
Change-Id: I7592261c65c7c0831ce553ee907fba9e3e458b6f
---
 recipes-containers/k3s/k3s_git.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/recipes-containers/k3s/k3s_git.bb b/recipes-containers/k3s/k3s_git.bb
index 0300fc3..e341ad7 100644
--- a/recipes-containers/k3s/k3s_git.bb
+++ b/recipes-containers/k3s/k3s_git.bb
@@ -95,6 +95,7 @@ RRECOMMENDS:${PN} = "\
                      kernel-module-xt-connmark \
                      kernel-module-vxlan \
                      kernel-module-xt-masquerade \
+                     kernel-module-xt-statistic \
                      "
 
 RCONFLICTS:${PN} = "kubectl"
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [meta-virtualization][PATCH 1/2] k3s: Update k3s service configuration
  2021-10-19 15:12 [meta-virtualization][PATCH 1/2] k3s: Update k3s service configuration Kamil Dziezyk
  2021-10-19 15:12 ` [meta-virtualization][PATCH 2/2] k3s: Add xt-statistic kernel module to rrecommends Kamil Dziezyk
@ 2021-10-21 23:22 ` Bruce Ashfield
  2021-10-22  7:37   ` [PATCH " Kamil Dziezyk
  1 sibling, 1 reply; 8+ messages in thread
From: Bruce Ashfield @ 2021-10-21 23:22 UTC (permalink / raw)
  To: Kamil Dziezyk; +Cc: meta-virtualization, nd

Thanks for the tweaks, they look good to me.

I have some other pending k3s changes I'm working on, but there was no
reason to hold these up, so I've pulled them into master.

Bruce

On Tue, Oct 19, 2021 at 11:13 AM Kamil Dziezyk <kamil.dziezyk@arm.com> wrote:
>
> Update k3s.service with the latest changes from install.sh script.
> Add k3s-killall.sh script to stop all of the K3s containers and reset
> the containerd state.
>
> The killall script cleans up containers, K3s directories, and networking
> components while also removing the iptables chain with all the associated
> rules. The cluster data will not be deleted.
>
> Signed-off-by: Kamil Dziezyk <kamil.dziezyk@arm.com>
> Change-Id: If1794367cabfc18fc8e3ecaf26badd4d0bc25114
> ---
>  recipes-containers/k3s/k3s/k3s-killall.sh | 82 +++++++++++++++++++++++
>  recipes-containers/k3s/k3s/k3s.service    | 12 +++-
>  recipes-containers/k3s/k3s_git.bb         |  2 +
>  3 files changed, 95 insertions(+), 1 deletion(-)
>  create mode 100644 recipes-containers/k3s/k3s/k3s-killall.sh
>
> diff --git a/recipes-containers/k3s/k3s/k3s-killall.sh b/recipes-containers/k3s/k3s/k3s-killall.sh
> new file mode 100644
> index 0000000..9e72615
> --- /dev/null
> +++ b/recipes-containers/k3s/k3s/k3s-killall.sh
> @@ -0,0 +1,82 @@
> +#!/bin/sh
> +
> +# Based on: k3s-killall.sh installed when running Rancher Lab's K3S install.sh
> +# In open-source project: https://github.com/k3s-io/k3s
> +#
> +# Original file: Copyright (c) 2021 Rancher Labs and Contributors.
> +# Modifications: Copyright (c) 2021 Arm Limited and Contributors. All rights reserved.
> +#
> +# Modifications:
> +# - Change systemd service directory location
> +# - Fix PID parsing to run on core image
> +# - Remove service stopping code (as this is intended to run as part of service
> +#   stop)
> +# - Changes to resolve warnings from the ShellCheck static analysis tool
> +#
> +# SPDX-License-Identifier: Apache License 2.0
> +
> +[ "$(id -u)" -eq 0 ] || exec sudo "$0" "$@"
> +
> +for bin in /var/lib/rancher/k3s/data/**/bin/; do
> +    [ -d "$bin" ] && export PATH=$PATH:$bin:$bin/aux
> +done
> +
> +set -x
> +
> +pschildren() {
> +    ps -e -o ppid= -o pid= | sed -e 's/^\s*//g; s/\s\s*/\t/g;' | grep -w "^$1" | cut -f2
> +}
> +
> +pstree() {
> +    for pid in "$@"; do
> +        echo "$pid"
> +        for child in $(pschildren "$pid"); do
> +            pstree "$child"
> +        done
> +    done
> +}
> +
> +killtree() {
> +    while read -r pid; do
> +        if [ -n "${pid}" ]; then
> +                kill -9 "${pid}" 2>/dev/null
> +        fi
> +    done <<EOF
> +$({ set +x; } 2>/dev/null; pstree "$@"; set -x;)
> +EOF
> +}
> +
> +getshims() {
> +    ps -e -o pid= -o args= | sed -e 's/^ *//; s/\s\s*/\t/;' | grep -w '[^/]*/bin/containerd-shim' | cut -f1
> +}
> +
> +killtree "$({ set +x; } 2>/dev/null; getshims; set -x)"
> +
> +# shellcheck disable=SC2016
> +do_unmount_and_remove() {
> +    set +x
> +    while read -r _ path _; do
> +        case "$path" in $1*) echo "$path" ;; esac
> +    done < /proc/self/mounts | sort -r | xargs -r -t -n 1 sh -c 'umount "$0" && rm -rf "$0"'
> +    set -x
> +}
> +
> +do_unmount_and_remove '/run/k3s'
> +do_unmount_and_remove '/var/lib/rancher/k3s'
> +do_unmount_and_remove '/var/lib/kubelet/pods'
> +do_unmount_and_remove '/var/lib/kubelet/plugins'
> +do_unmount_and_remove '/run/netns/cni-'
> +
> +# Remove CNI namespaces
> +ip netns show 2>/dev/null | grep cni- | xargs -r -t -n 1 ip netns delete
> +
> +# Delete network interface(s) that match 'master cni0'
> +ip link show 2>/dev/null | grep 'master cni0' | while read -r _ iface _; do
> +    iface=${iface%%@*}
> +    [ -z "$iface" ] || ip link delete "$iface"
> +done
> +ip link delete cni0
> +ip link delete flannel.1
> +ip link delete flannel-v6.1
> +rm -rf /var/lib/cni/
> +iptables-save | grep -v KUBE- | grep -v CNI- | iptables-restore
> diff --git a/recipes-containers/k3s/k3s/k3s.service b/recipes-containers/k3s/k3s/k3s.service
> index 34c7a80..33d3ee7 100644
> --- a/recipes-containers/k3s/k3s/k3s.service
> +++ b/recipes-containers/k3s/k3s/k3s.service
> @@ -4,12 +4,17 @@ Description=Lightweight Kubernetes
>  Documentation=https://k3s.io
>  Requires=containerd.service
>  After=containerd.service
> +After=network-online.target
> +Wants=network-online.target
>
>  [Install]
>  WantedBy=multi-user.target
>
>  [Service]
>  Type=notify
> +EnvironmentFile=-/etc/default/%N
> +EnvironmentFile=-/etc/sysconfig/%N
> +EnvironmentFile=-/etc/systemd/system/k3s.service.env
>  KillMode=process
>  Delegate=yes
>  # Having non-zero Limit*s causes performance problems due to accounting overhead
> @@ -21,7 +26,12 @@ TasksMax=infinity
>  TimeoutStartSec=0
>  Restart=always
>  RestartSec=5s
> +ExecStartPre=/bin/sh -xc '! systemctl is-enabled --quiet nm-cloud-setup.service'
>  ExecStartPre=-/sbin/modprobe br_netfilter
>  ExecStartPre=-/sbin/modprobe overlay
>  ExecStart=/usr/local/bin/k3s server
> -
> +# Avoid any delay due to this service when the system is rebooting or shutting
> +# down by using the k3s-killall.sh script to kill all of the running k3s
> +# services and containers
> +ExecStopPost=/bin/sh -c "if systemctl is-system-running | grep -i \
> +                           'stopping'; then /usr/local/bin/k3s-killall.sh; fi"
> diff --git a/recipes-containers/k3s/k3s_git.bb b/recipes-containers/k3s/k3s_git.bb
> index 5971dde..0300fc3 100644
> --- a/recipes-containers/k3s/k3s_git.bb
> +++ b/recipes-containers/k3s/k3s_git.bb
> @@ -11,6 +11,7 @@ SRC_URI = "git://github.com/rancher/k3s.git;branch=release-1.22;name=k3s \
>             file://k3s-clean \
>             file://cni-containerd-net.conf \
>             file://0001-Finding-host-local-in-usr-libexec.patch;patchdir=src/import \
> +           file://k3s-killall.sh \
>            "
>  SRC_URI[k3s.md5sum] = "363d3a08dc0b72ba6e6577964f6e94a5"
>  SRCREV_k3s = "737f722315b9832e9180fa232253d28ae1f2272f"
> @@ -60,6 +61,7 @@ do_install() {
>          # ln -sr "${D}/${BIN_PREFIX}/bin/k3s" "${D}${BIN_PREFIX}/bin/ctr"
>          ln -sr "${D}/${BIN_PREFIX}/bin/k3s" "${D}${BIN_PREFIX}/bin/kubectl"
>          install -m 755 "${WORKDIR}/k3s-clean" "${D}${BIN_PREFIX}/bin"
> +        install -m 755 "${WORKDIR}/k3s-killall.sh" "${D}${BIN_PREFIX}/bin"
>
>          if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
>                  install -D -m 0644 "${WORKDIR}/k3s.service" "${D}${systemd_system_unitdir}/k3s.service"
> --
> 2.17.1
>
>
> 
>


-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 1/2] k3s: Update k3s service configuration
  2021-10-21 23:22 ` [meta-virtualization][PATCH 1/2] k3s: Update k3s service configuration Bruce Ashfield
@ 2021-10-22  7:37   ` Kamil Dziezyk
  2021-10-28  8:36     ` [meta-virtualization] " Diego Sueiro
  0 siblings, 1 reply; 8+ messages in thread
From: Kamil Dziezyk @ 2021-10-22  7:37 UTC (permalink / raw)
  To: meta-virtualization

[-- Attachment #1: Type: text/plain, Size: 96 bytes --]

Hello Bruce,

Can you backport these two k3s patches to honister branch?

Thanks,

Kamil

[-- Attachment #2: Type: text/html, Size: 121 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [meta-virtualization] [PATCH 1/2] k3s: Update k3s service configuration
  2021-10-22  7:37   ` [PATCH " Kamil Dziezyk
@ 2021-10-28  8:36     ` Diego Sueiro
  2021-10-28 12:53       ` Bruce Ashfield
       [not found]       ` <16B232F25D90C384.11077@lists.yoctoproject.org>
  0 siblings, 2 replies; 8+ messages in thread
From: Diego Sueiro @ 2021-10-28  8:36 UTC (permalink / raw)
  To: meta-virtualization, Kamil Dzieżyk, Bruce Ashfield; +Cc: nd

[-- Attachment #1: Type: text/plain, Size: 728 bytes --]


Hi Bruce,

Any expectations to have this patch chain backported to honister?

If it helps, we can send the patches targeting honister to the mailing list.

Regards,
Diego Sueiro

________________________________
From: meta-virtualization@lists.yoctoproject.org <meta-virtualization@lists.yoctoproject.org> on behalf of Kamil Dziezyk via lists.yoctoproject.org <kamil.dziezyk=arm.com@lists.yoctoproject.org>
Sent: 22 October 2021 08:37
To: meta-virtualization@lists.yoctoproject.org <meta-virtualization@lists.yoctoproject.org>
Subject: Re: [meta-virtualization] [PATCH 1/2] k3s: Update k3s service configuration


Hello Bruce,

Can you backport these two k3s patches to honister branch?

Thanks,

Kamil

[-- Attachment #2: Type: text/html, Size: 2392 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [meta-virtualization] [PATCH 1/2] k3s: Update k3s service configuration
  2021-10-28  8:36     ` [meta-virtualization] " Diego Sueiro
@ 2021-10-28 12:53       ` Bruce Ashfield
       [not found]       ` <16B232F25D90C384.11077@lists.yoctoproject.org>
  1 sibling, 0 replies; 8+ messages in thread
From: Bruce Ashfield @ 2021-10-28 12:53 UTC (permalink / raw)
  To: Diego Sueiro; +Cc: meta-virtualization, Kamil Dzieżyk, nd

On Thu, Oct 28, 2021 at 4:36 AM Diego Sueiro <Diego.Sueiro@arm.com> wrote:
>
>
> Hi Bruce,
>
> Any expectations to have this patch chain backported to honister?
>

I've tagged them for backport, I was just busy trying to figure out
why python 3.10 is breaking master.

I expect to get to them shortly.

Bruce


> If it helps, we can send the patches targeting honister to the mailing list.
>
> Regards,
> Diego Sueiro
>
> ________________________________
> From: meta-virtualization@lists.yoctoproject.org <meta-virtualization@lists.yoctoproject.org> on behalf of Kamil Dziezyk via lists.yoctoproject.org <kamil.dziezyk=arm.com@lists.yoctoproject.org>
> Sent: 22 October 2021 08:37
> To: meta-virtualization@lists.yoctoproject.org <meta-virtualization@lists.yoctoproject.org>
> Subject: Re: [meta-virtualization] [PATCH 1/2] k3s: Update k3s service configuration
>
>
> Hello Bruce,
>
> Can you backport these two k3s patches to honister branch?
>
> Thanks,
>
> Kamil



-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [meta-virtualization] [PATCH 1/2] k3s: Update k3s service configuration
       [not found]       ` <16B232F25D90C384.11077@lists.yoctoproject.org>
@ 2021-10-28 19:32         ` Bruce Ashfield
  2021-10-29  8:08           ` Diego Sueiro
  0 siblings, 1 reply; 8+ messages in thread
From: Bruce Ashfield @ 2021-10-28 19:32 UTC (permalink / raw)
  To: Bruce Ashfield; +Cc: Diego Sueiro, meta-virtualization, Kamil Dzieżyk, nd

[-- Attachment #1: Type: text/plain, Size: 1595 bytes --]

On Thu, Oct 28, 2021 at 8:53 AM Bruce Ashfield via lists.yoctoproject.org
<bruce.ashfield=gmail.com@lists.yoctoproject.org> wrote:

> On Thu, Oct 28, 2021 at 4:36 AM Diego Sueiro <Diego.Sueiro@arm.com> wrote:
> >
> >
> > Hi Bruce,
> >
> > Any expectations to have this patch chain backported to honister?
> >
>
> I've tagged them for backport, I was just busy trying to figure out
> why python 3.10 is breaking master.
>
> I expect to get to them shortly.
>
>
... and they are now on honister as well.

Bruce



> Bruce
>
>
> > If it helps, we can send the patches targeting honister to the mailing
> list.
> >
> > Regards,
> > Diego Sueiro
> >
> > ________________________________
> > From: meta-virtualization@lists.yoctoproject.org <
> meta-virtualization@lists.yoctoproject.org> on behalf of Kamil Dziezyk
> via lists.yoctoproject.org <kamil.dziezyk=arm.com@lists.yoctoproject.org>
> > Sent: 22 October 2021 08:37
> > To: meta-virtualization@lists.yoctoproject.org <
> meta-virtualization@lists.yoctoproject.org>
> > Subject: Re: [meta-virtualization] [PATCH 1/2] k3s: Update k3s service
> configuration
> >
> >
> > Hello Bruce,
> >
> > Can you backport these two k3s patches to honister branch?
> >
> > Thanks,
> >
> > Kamil
>
>
>
> --
> - Thou shalt not follow the NULL pointer, for chaos and madness await
> thee at its end
> - "Use the force Harry" - Gandalf, Star Trek II
>
> 
>
>

-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await thee
at its end
- "Use the force Harry" - Gandalf, Star Trek II

[-- Attachment #2: Type: text/html, Size: 3159 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [meta-virtualization] [PATCH 1/2] k3s: Update k3s service configuration
  2021-10-28 19:32         ` Bruce Ashfield
@ 2021-10-29  8:08           ` Diego Sueiro
  0 siblings, 0 replies; 8+ messages in thread
From: Diego Sueiro @ 2021-10-29  8:08 UTC (permalink / raw)
  To: Bruce Ashfield; +Cc: meta-virtualization, Kamil Dzieżyk, nd

[-- Attachment #1: Type: text/plain, Size: 2484 bytes --]

Thanks


Diego Sueiro


________________________________
From: meta-virtualization@lists.yoctoproject.org <meta-virtualization@lists.yoctoproject.org> on behalf of Bruce Ashfield via lists.yoctoproject.org <bruce.ashfield=gmail.com@lists.yoctoproject.org>
Sent: 28 October 2021 20:32
To: Bruce Ashfield <bruce.ashfield@gmail.com>
Cc: Diego Sueiro <Diego.Sueiro@arm.com>; meta-virtualization@lists.yoctoproject.org <meta-virtualization@lists.yoctoproject.org>; Kamil Dzieżyk <Kamil.Dziezyk@arm.com>; nd <nd@arm.com>
Subject: Re: [meta-virtualization] [PATCH 1/2] k3s: Update k3s service configuration



On Thu, Oct 28, 2021 at 8:53 AM Bruce Ashfield via lists.yoctoproject.org<http://lists.yoctoproject.org> <bruce.ashfield=gmail.com@lists.yoctoproject.org<mailto:gmail.com@lists.yoctoproject.org>> wrote:
On Thu, Oct 28, 2021 at 4:36 AM Diego Sueiro <Diego.Sueiro@arm.com<mailto:Diego.Sueiro@arm.com>> wrote:
>
>
> Hi Bruce,
>
> Any expectations to have this patch chain backported to honister?
>

I've tagged them for backport, I was just busy trying to figure out
why python 3.10 is breaking master.

I expect to get to them shortly.


... and they are now on honister as well.

Bruce


Bruce


> If it helps, we can send the patches targeting honister to the mailing list.
>
> Regards,
> Diego Sueiro
>
> ________________________________
> From: meta-virtualization@lists.yoctoproject.org<mailto:meta-virtualization@lists.yoctoproject.org> <meta-virtualization@lists.yoctoproject.org<mailto:meta-virtualization@lists.yoctoproject.org>> on behalf of Kamil Dziezyk via lists.yoctoproject.org<http://lists.yoctoproject.org> <kamil.dziezyk=arm.com@lists.yoctoproject.org<mailto:arm.com@lists.yoctoproject.org>>
> Sent: 22 October 2021 08:37
> To: meta-virtualization@lists.yoctoproject.org<mailto:meta-virtualization@lists.yoctoproject.org> <meta-virtualization@lists.yoctoproject.org<mailto:meta-virtualization@lists.yoctoproject.org>>
> Subject: Re: [meta-virtualization] [PATCH 1/2] k3s: Update k3s service configuration
>
>
> Hello Bruce,
>
> Can you backport these two k3s patches to honister branch?
>
> Thanks,
>
> Kamil



--
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II





--
- Thou shalt not follow the NULL pointer, for chaos and madness await thee at its end
- "Use the force Harry" - Gandalf, Star Trek II


[-- Attachment #2: Type: text/html, Size: 5007 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-10-29  8:09 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-19 15:12 [meta-virtualization][PATCH 1/2] k3s: Update k3s service configuration Kamil Dziezyk
2021-10-19 15:12 ` [meta-virtualization][PATCH 2/2] k3s: Add xt-statistic kernel module to rrecommends Kamil Dziezyk
2021-10-21 23:22 ` [meta-virtualization][PATCH 1/2] k3s: Update k3s service configuration Bruce Ashfield
2021-10-22  7:37   ` [PATCH " Kamil Dziezyk
2021-10-28  8:36     ` [meta-virtualization] " Diego Sueiro
2021-10-28 12:53       ` Bruce Ashfield
     [not found]       ` <16B232F25D90C384.11077@lists.yoctoproject.org>
2021-10-28 19:32         ` Bruce Ashfield
2021-10-29  8:08           ` Diego Sueiro

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.