Skip to main content

kubernetes_clusters

Creates, updates, deletes, gets or lists a kubernetes_clusters resource.

Overview

Namekubernetes_clusters
TypeResource
Idazure_extras.network_cloud.kubernetes_clusters

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
aadConfigurationobjectThe Azure Active Directory Integration properties.
administratorConfigurationobjectThe administrative credentials that will be applied to the control plane and agent pool nodes that do not specify their own values.
attachedNetworkIdsarrayThe full list of network resource IDs that are attached to this cluster, including those attached only to specific agent pools.
availableUpgradesarrayThe list of versions that this Kubernetes cluster can be upgraded to.
clusterIdstringThe resource ID of the Network Cloud cluster.
connectedClusterIdstringThe resource ID of the connected cluster set up when this Kubernetes cluster is created.
controlPlaneKubernetesVersionstringThe current running version of Kubernetes on the control plane.
controlPlaneNodeConfigurationobjectThe defining characteristics of the control plane for this Kubernetes Cluster. Required.
detailedStatusstringThe current status of the Kubernetes cluster. Known values are: "Available", "Error", and "Provisioning". (Available, Error, Provisioning)
detailedStatusMessagestringThe descriptive message about the current detailed status.
etagstring"If etag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.").
extendedLocationobjectThe extended location of the resource. This property is required when creating the resource. Required.
featureStatusesarrayThe current feature settings.
initialAgentPoolConfigurationsarrayThe agent pools that are created with this Kubernetes cluster for running critical system services and workloads. This data in this field is only used during creation, and the field will be empty following the creation of the Kubernetes Cluster. After creation, the management of agent pools is done using the agentPools sub-resource. Required.
kubernetesVersionstringThe Kubernetes version for this cluster. Required.
locationstringThe geo-location where the resource lives. Required.
managedResourceGroupConfigurationobjectThe configuration of the managed resource group associated with the resource.
networkConfigurationobjectThe configuration of the Kubernetes cluster networking, including the attachment of networks that span the cluster. Required.
nodesarrayThe details of the nodes in this cluster.
provisioningStatestringThe provisioning state of the Kubernetes cluster resource. Known values are: "Succeeded", "Failed", "Canceled", "Accepted", "InProgress", "Created", "Updating", and "Deleting". (Succeeded, Failed, Canceled, Accepted, InProgress, Created, Updating, Deleting)
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
tagsobjectResource tags.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, kubernetes_cluster_name, subscription_idGet properties of the provided the Kubernetes cluster.
list_by_resource_groupselectresource_group_name, subscription_id$top, $skipTokenGet a list of Kubernetes clusters in the provided resource group.
list_by_subscriptionselectsubscription_id$top, $skipTokenGet a list of Kubernetes clusters in the provided subscription.
create_or_updateinsertresource_group_name, kubernetes_cluster_name, subscription_id, location, properties, extendedLocationCreate a new Kubernetes cluster or update the properties of the existing one.
updateupdateresource_group_name, kubernetes_cluster_name, subscription_idPatch the properties of the provided Kubernetes cluster, or update the tags associated with the Kubernetes cluster. Properties and tag updates can be done independently.
create_or_updatereplaceresource_group_name, kubernetes_cluster_name, subscription_id, location, properties, extendedLocationCreate a new Kubernetes cluster or update the properties of the existing one.
deletedeleteresource_group_name, kubernetes_cluster_name, subscription_idDelete the provided Kubernetes cluster.
restart_nodeexecresource_group_name, kubernetes_cluster_name, subscription_id, nodeNameRestart a targeted node of a Kubernetes cluster.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
kubernetes_cluster_namestringThe name of the Kubernetes cluster. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring
$skipTokenstringThe opaque token that the server returns to indicate where to continue listing resources from. This is used for paging through large result sets. Default value is None.
$topintegerThe maximum number of resources to return from the operation. Example: '$top=10'. Default value is None.

SELECT examples

Get properties of the provided the Kubernetes cluster.

SELECT
id,
name,
aadConfiguration,
administratorConfiguration,
attachedNetworkIds,
availableUpgrades,
clusterId,
connectedClusterId,
controlPlaneKubernetesVersion,
controlPlaneNodeConfiguration,
detailedStatus,
detailedStatusMessage,
etag,
extendedLocation,
featureStatuses,
initialAgentPoolConfigurations,
kubernetesVersion,
location,
managedResourceGroupConfiguration,
networkConfiguration,
nodes,
provisioningState,
systemData,
tags,
type
FROM azure_extras.network_cloud.kubernetes_clusters
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND kubernetes_cluster_name = '{{ kubernetes_cluster_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;

INSERT examples

Create a new Kubernetes cluster or update the properties of the existing one.

INSERT INTO azure_extras.network_cloud.kubernetes_clusters (
tags,
location,
properties,
extendedLocation,
resource_group_name,
kubernetes_cluster_name,
subscription_id
)
SELECT
'{{ tags }}',
'{{ location }}' /* required */,
'{{ properties }}' /* required */,
'{{ extendedLocation }}' /* required */,
'{{ resource_group_name }}',
'{{ kubernetes_cluster_name }}',
'{{ subscription_id }}'
RETURNING
id,
name,
etag,
extendedLocation,
location,
properties,
systemData,
tags,
type
;

UPDATE examples

Patch the properties of the provided Kubernetes cluster, or update the tags associated with the Kubernetes cluster. Properties and tag updates can be done independently.

UPDATE azure_extras.network_cloud.kubernetes_clusters
SET
properties = '{{ properties }}',
tags = '{{ tags }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND kubernetes_cluster_name = '{{ kubernetes_cluster_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
RETURNING
id,
name,
etag,
extendedLocation,
location,
properties,
systemData,
tags,
type;

REPLACE examples

Create a new Kubernetes cluster or update the properties of the existing one.

REPLACE azure_extras.network_cloud.kubernetes_clusters
SET
tags = '{{ tags }}',
location = '{{ location }}',
properties = '{{ properties }}',
extendedLocation = '{{ extendedLocation }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND kubernetes_cluster_name = '{{ kubernetes_cluster_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
AND location = '{{ location }}' --required
AND properties = '{{ properties }}' --required
AND extendedLocation = '{{ extendedLocation }}' --required
RETURNING
id,
name,
etag,
extendedLocation,
location,
properties,
systemData,
tags,
type;

DELETE examples

Delete the provided Kubernetes cluster.

DELETE FROM azure_extras.network_cloud.kubernetes_clusters
WHERE resource_group_name = '{{ resource_group_name }}' --required
AND kubernetes_cluster_name = '{{ kubernetes_cluster_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;

Lifecycle Methods

Restart a targeted node of a Kubernetes cluster.

EXEC azure_extras.network_cloud.kubernetes_clusters.restart_node 
@resource_group_name='{{ resource_group_name }}' --required,
@kubernetes_cluster_name='{{ kubernetes_cluster_name }}' --required,
@subscription_id='{{ subscription_id }}' --required
@@json=
'{
"nodeName": "{{ nodeName }}"
}'
;