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
After changing `talsoctl images k8s-bundle and talos-bundle`
we stopped printing some of the images to release notes.
This fixes that issue.
Signed-off-by: Mateusz Urbanek <mateusz.urbanek@siderolabs.com>
(cherry picked from commit 7416dca)
imageCmd.PersistentFlags().StringVar(&imageCmdFlags.namespace, "namespace", "cri", "namespace to use: `system` (etcd and kubelet images) or `cri` for all Kubernetes workloads")
648
645
addCommand(imageCmd)
649
646
650
-
imageCmd.AddCommand(imageDefaultCmd)
651
-
imageDefaultCmd.PersistentFlags().Var(imageDefaultCmdFlags.provisioner, "provisioner", "include provisioner specific images")
652
-
653
647
imageCmd.AddCommand(imageListCmd)
654
648
imageCmd.AddCommand(imagePullCmd)
655
-
imageCmd.AddCommand(imageSourceBundleCmd)
649
+
650
+
imageCmd.AddCommand(imageTalosBundleCmd)
651
+
imageTalosBundleCmd.PersistentFlags().BoolVar(&imageTalosBundleCmdFlags.overlays, "overlays", true, "Include images that belong to Talos overlays")
652
+
imageTalosBundleCmd.PersistentFlags().BoolVar(&imageTalosBundleCmdFlags.extensions, "extensions", true, "Include images that belong to Talos extensions")
653
+
654
+
imageCmd.AddCommand(imageDefaultCmd)
656
655
657
656
imageCmd.AddCommand(imageCacheCreateCmd)
658
657
imageCacheCreateCmd.PersistentFlags().StringVar(&imageCacheCreateCmdFlags.imageCachePath, "image-cache-path", "", "directory to save the image cache in OCI format")
Copy file name to clipboardExpand all lines: hack/release.toml
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,13 @@ preface = """
21
21
Linux: 6.18.5
22
22
23
23
Talos is built with Go 1.25.6.
24
+
"""
25
+
26
+
[notes.talosctl_images_talos_bundle]
27
+
title = "`talosctl images talos-bundle` can ignore reaching to the registry"
28
+
description = """\
29
+
The `talosctl images talos-bundle` command now accepts optional `--ovelays` and `--extensions` flags.
30
+
If those are set to `false`, the command will not attempt to reach out to the container registry to fetch the latest versions and digests of the overlays and extensions.
0 commit comments