Welcome to the v1.6.24 release of containerd!
The twenty-fourth patch release for containerd 1.6 contains various fixes and updates.
| { | |
| "podMetrics": [ | |
| { | |
| "podSandboxId": "0c7b70cf580b2baccbfffd1fb5957ead926c631a04eba44ed62345d140aea379", | |
| "metrics": [ | |
| { | |
| "name": "container_network_receive_bytes_total", | |
| "timestamp": "1756056774580590522", | |
| "metricType": "COUNTER", | |
| "labelValues": [ |
Welcome to the v1.6.24 release of containerd!
The twenty-fourth patch release for containerd 1.6 contains various fixes and updates.
| #!/bin/bash | |
| # script to prepare the development environment for alexa hosted skill development | |
| set -o xtrace | |
| set -o errexit | |
| set -o nounset | |
| set -o pipefail | |
| merge_skill_json () { | |
| git checkout dev -- skill-package/skill_template.json |
| FROM ubuntu:22.04 | |
| COPY ./setup.sh /bin/setup.sh |
| #!/usr/bin/env bash | |
| # Usage | |
| # api-split.sh https://github.com/akhilerm/containerd-api https://github.com/akhilerm/containerd release/1.6 v1.6.10 | |
| # the tag should exist in the source repo, also source branch should exist | |
| API_REPO=$1 | |
| #API_REPO="https://github.com/akhilerm/containerd-api" | |
| SOURCE_REPO=$2 |
| import os | |
| import requests | |
| import json | |
| import datetime | |
| import time | |
| import sys | |
| url = "https://cdn-api.co-vin.in/api/v2/appointment/sessions/public/calendarByDistrict" | |
| headers = {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0"} |
| #Create namespace | |
| apiVersion: v1 | |
| kind: Namespace | |
| metadata: | |
| name: minio | |
| --- | |
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| # This name uniquely identifies the Deployment |
| Flowchart for local pv upgrade | |
| NOTE: Does not support upgrade of localPV rawblock | |
| For Cstor, the same flowchart as below applies, but instead of using FSUUID annotation, partition table UUID | |
| annotation will be used. |
| apiVersion: openebs.io/v1alpha1 | |
| kind: BlockDevice | |
| metadata: | |
| name: example-blockdevice | |
| labels: | |
| kubernetes.io/hostname: <host name of the node in which disk/blockdevice is attached> # like gke-openebs-user-default-pool-044afcb8-bmc0 | |
| ndm.io/managed: "false" # for manual disk creation put false | |
| ndm.io/blockdevice-type: blockdevice | |
| status: | |
| claimState: Unclaimed |
The configuration file for each VM has to be edited, so that the disk comes with a unique serial number
vi /etc/pve/qemu-server/<VMID>.confscsi1: images:<disk image>,cache=writeback,discard=on,size=120G,ssd=1,serial=5fb20ba17c2f
qm shutdown <VMID> && qm start <VMID>