Skip to content

Commit b6e4260

Browse files
Add 2024-04-13 support for current Kusto resources, plus principal assignments (#4883)
* Add 2024-04-13 support for current Kusto, plus principal assignments * Config map
1 parent 403c964 commit b6e4260

File tree

80 files changed

+58610
-1193
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+58610
-1193
lines changed

docs/hugo/content/reference/_index.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -646,6 +646,17 @@ These are older versions of resources still available for use in the current rel
646646

647647
To install the CRDs for these resources, your ASO configuration must include `kusto.azure.com/*` as one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations.
648648

649+
### Next Release
650+
651+
Development of these new resources is complete and they will be available in the next release of ASO.
652+
653+
| Resource | ARM Version | CRD Version | Supported From | Sample |
654+
|---------------------|-------------|---------------|----------------|-----------------------------------------------------------------------------------------------------------------------------------------|
655+
| Cluster | 2024-04-13 | v1api20240413 | v2.15.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/kusto/v1api20240413/v1api20240413_cluster.yaml) |
656+
| DataConnection | 2024-04-13 | v1api20240413 | v2.15.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/kusto/v1api20240413/v1api20240413_dataconnection.yaml) |
657+
| Database | 2024-04-13 | v1api20240413 | v2.15.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/kusto/v1api20240413/v1api20240413_database.yaml) |
658+
| PrincipalAssignment | 2024-04-13 | v1api20240413 | v2.15.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/kusto/v1api20240413/v1api20240413_principalassignment.yaml) |
659+
649660
### Released
650661

651662
These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API.

docs/hugo/content/reference/kusto/_index.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ no_list: true
55
---
66
To install the CRDs for these resources, your ASO configuration must include `kusto.azure.com/*` as one of the configured CRD patterns. See [CRD Management in ASO](https://azure.github.io/azure-service-operator/guide/crd-management/) for details on doing this for both [Helm](https://azure.github.io/azure-service-operator/guide/crd-management/#helm) and [YAML](https://azure.github.io/azure-service-operator/guide/crd-management/#yaml) based installations.
77

8+
### Next Release
9+
10+
Development of these new resources is complete and they will be available in the next release of ASO.
11+
12+
| Resource | ARM Version | CRD Version | Supported From | Sample |
13+
|---------------------|-------------|---------------|----------------|-----------------------------------------------------------------------------------------------------------------------------------------|
14+
| Cluster | 2024-04-13 | v1api20240413 | v2.15.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/kusto/v1api20240413/v1api20240413_cluster.yaml) |
15+
| DataConnection | 2024-04-13 | v1api20240413 | v2.15.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/kusto/v1api20240413/v1api20240413_dataconnection.yaml) |
16+
| Database | 2024-04-13 | v1api20240413 | v2.15.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/kusto/v1api20240413/v1api20240413_database.yaml) |
17+
| PrincipalAssignment | 2024-04-13 | v1api20240413 | v2.15.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/kusto/v1api20240413/v1api20240413_principalassignment.yaml) |
18+
819
### Released
920

1021
These resource(s) are available for use in the current release of ASO. Different versions of a given resource reflect different versions of the Azure ARM API.

v2/api/kusto/customizations/cluster_extension_types_gen.go

Lines changed: 6 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

v2/api/kusto/customizations/cluster_extensions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"github.com/rotisserie/eris"
1515
"sigs.k8s.io/controller-runtime/pkg/conversion"
1616

17-
kusto "github.com/Azure/azure-service-operator/v2/api/kusto/v1api20230815/storage"
17+
kusto "github.com/Azure/azure-service-operator/v2/api/kusto/v1api20240413/storage"
1818
"github.com/Azure/azure-service-operator/v2/internal/genericarmclient"
1919
"github.com/Azure/azure-service-operator/v2/internal/resolver"
2020
"github.com/Azure/azure-service-operator/v2/internal/set"

v2/api/kusto/customizations/data_connection_extension_types_gen.go

Lines changed: 6 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

v2/api/kusto/customizations/database_extension_types_gen.go

Lines changed: 6 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

v2/api/kusto/customizations/database_extensions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
"github.com/go-logr/logr"
1313

14-
kusto "github.com/Azure/azure-service-operator/v2/api/kusto/v1api20230815/storage"
14+
kusto "github.com/Azure/azure-service-operator/v2/api/kusto/v1api20240413/storage"
1515
"github.com/Azure/azure-service-operator/v2/internal/genericarmclient"
1616
"github.com/Azure/azure-service-operator/v2/internal/resolver"
1717
"github.com/Azure/azure-service-operator/v2/pkg/genruntime"

v2/api/kusto/customizations/principal_assignment_extension_types_gen.go

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

v2/api/kusto/customizations/structure.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ DataConnectionExtension: Object (0 properties)
77

88
DatabaseExtension: Object (0 properties)
99

10+
PrincipalAssignmentExtension: Object (0 properties)
11+

0 commit comments

Comments
 (0)