Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/connectedk8s/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Release History
===============

1.10.8
++++++
* Add checks for the Graytown bundle feature flag in the 'connectedk8s connect' and 'connectedk8s update' commands.
* Display a more detailed error message from the agent-update-validator in the 'connectedk8s upgrade' command.

1.10.7
++++++
* Added support for discovering additional k8s distributions and Infrastructure.
Expand Down
12 changes: 12 additions & 0 deletions src/connectedk8s/azext_connectedk8s/_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,3 +517,15 @@
# "Application code shouldn't block the creation of resources for a resource provider that is in the registering state."
# See https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/resource-providers-and-types#register-resource-provider
allowed_rp_registration_states = ["Registering", "Registered"]

Connected_Cluster_Type = "connectedclusters"

Arc_Agentry_Bundle_Feature = "extensionSets"
Arc_Agentry_Bundle_Feature_Setting = "versionManagedExtensions"

Bundle_Feature_Value_List = ["enabled", "disabled", "preview"]
Bundle_Extension_Type_List = ["microsoft.iotoperations", "microsoft.extensiondiagnostics", "microsoft.arc.containerstorage", "microsoft.azure.secretstore"]

CONST_K8S_EXTENSION_NAME = "k8s-extension"
CONST_K8S_EXTENSION_CLIENT_FACTORY_MOD_NAME = "azext_k8s_extension._client_factory"
CONST_K8S_EXTENSION_CUSTOM_MOD_NAME = "azext_k8s_extension.custom"
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
if TYPE_CHECKING:
from subprocess import Popen

from knack.commands import CLICommmand
from knack.commands import CLICommand
from requests.models import Response

from azext_connectedk8s.vendored_sdks.preview_2024_07_01.models import (
Expand All @@ -30,7 +30,7 @@


def handle_post_at_to_csp(
cmd: CLICommmand,
cmd: CLICommand,
api_server_port: int,
tenant_id: str,
clientproxy_process: Popen[bytes],
Expand Down
Loading
Loading