зеркало из
1
0
Форкнуть 0
Azure Service Operator allows you to create Azure resources using kubectl
Перейти к файлу
George Pollard b91ee9223f
Update admission review version (#1893)
* Update admission review verstion to v1

* Update to newer envtest setup, remove Kubebuilder

* Make Dockerfile work for any UID/GID

Co-authored-by: Matthew Christopher <matthchr@users.noreply.github.com>
2022-07-08 10:29:45 -07:00
.devcontainer Update admission review version (#1893) 2022-07-08 10:29:45 -07:00
.github Fix Helm chart job and generate Helm chart for beta.1 (#2369) 2022-06-30 16:29:15 -07:00
api Update Azure pipeline to use go 1.18 (#2218) 2022-04-13 15:24:40 +12:00
charts Update Helm chart (#2215) 2022-04-04 14:26:08 -07:00
config Fix last references to old primary branch (#2223) 2022-04-08 11:13:44 +12:00
controllers Switch ASO v1 from admissionregistration v1beta1 to v1 (#2053) 2022-02-03 09:42:23 +13:00
devops Fix issue with release scripts (#1509) 2021-05-25 12:15:03 -07:00
docs Add support for ML service (#2319) 2022-07-07 15:43:40 +12:00
examples/demo fix(azure-vote-example): fix apiserverion to RedisCache object 2019-10-15 11:48:41 -06:00
hack/crossplane Improve docs on Supported Resources (#2339) 2022-06-15 12:25:24 +12:00
pkg Make elastic pool id configurable on Azure SQL DB (#2184) 2022-03-31 12:48:13 -07:00
reports Implement controller coverage testing 2020-04-13 14:56:41 -07:00
scripts Update admission review version (#1893) 2022-07-08 10:29:45 -07:00
test/common Add new options to support KeyVault soft delete (#1717) 2021-08-19 16:47:05 -07:00
v2 Update admission review version (#1893) 2022-07-08 10:29:45 -07:00
.dockerignore Update Azure pipeline to use go 1.18 (#2218) 2022-04-13 15:24:40 +12:00
.envrc Pr 22 merge (#158) 2019-08-29 17:36:20 -06:00
.gitattributes Fix EOLN settings so devcontainer works on Windows (#1719) 2021-08-18 15:22:36 +12:00
.gitignore Support wildcards with transformation targets (#2325) 2022-06-09 03:30:37 +00:00
.gitmodules Change site theme (#2256) 2022-05-04 13:30:57 +12:00
.golangci.yml Use prefix match for Go version (#2363) 2022-06-28 16:15:59 +00:00
CODE_OF_CONDUCT.md Initial commit 2019-07-17 17:44:12 -07:00
CONTRIBUTING.md Docs improvements for ignite (#1947) 2021-11-01 23:03:14 -07:00
Dockerfile Update Azure pipeline to use go 1.18 (#2218) 2022-04-13 15:24:40 +12:00
LICENSE updating the license file 2020-03-02 11:56:09 -07:00
Makefile Update Azure pipeline to use go 1.18 (#2218) 2022-04-13 15:24:40 +12:00
PROJECT initial working code for app insights api keys 2020-07-08 10:07:42 -06:00
README.md Update documentation for beta (#2236) 2022-04-13 11:21:41 -07:00
SECURITY.md Move everything to the right place 2021-05-12 03:25:47 +00:00
SUPPORT.md Update documentation for v2 (#1733) 2021-08-25 10:58:41 -07:00
Taskfile.yml Helm updates and upgrade documentation updates (#2358) 2022-06-28 11:36:54 -07:00
azure-pipelines.yml Fix ADO build (#2283) 2022-05-16 12:11:24 -07:00
codecov.yml Exclude zz_generated.deepcopy.go files from coverage (#1855) 2021-10-06 12:33:28 +13:00
dev.sh Update admission review version (#1893) 2022-07-08 10:29:45 -07:00
go.mod Update version of gopkg.in/yaml.v3 to address CVE-2022-28948 (#2320) 2022-06-02 08:52:07 +12:00
go.sum Update version of gopkg.in/yaml.v3 to address CVE-2022-28948 (#2320) 2022-06-02 08:52:07 +12:00
main.go Enable structured logs (#1766) 2021-09-06 09:21:38 +12:00
workspace.code-workspace Move generator code to tools/generator/internal (#1871) 2021-10-18 20:26:50 +13:00

README.md

Azure Service Operator (for Kubernetes)

Go Report Card Build Status v2 Status

Note: The API is expected to change (while adhering to semantic versioning). Alpha, Beta, and Stable mean roughly the same for this project as they do for all Kubernetes features.

What is it?

Azure Service Operator (ASO) helps you provision Azure resources and connect your applications to them from within Kubernetes.

If you want to use Azure resources but would prefer to manage those resources using Kubernetes tooling and primitives (for example kubectl apply), then Azure Service Operator might be for you.

Overview

The Azure Service Operator consists of:

  • The Custom Resource Definitions (CRDs) for each of the Azure services a Kubernetes user can provision.
  • The Kubernetes controller that manages the Azure resources represented by the user specified Custom Resources. The controller attempts to synchronize the desired state in the user specified Custom Resource with the actual state of that resource in Azure, creating it if it doesn't exist, updating it if it has been changed, or deleting it.

Versions of Azure Service Operator

There are two major versions of Azure Service Operator: v1 and v2. Consult the below table and descriptions to learn more about which you should use.

Note: ASO v1 and v2 are two totally independent operators. Each has its own unique set of CRDs and controllers. They can be deployed side by side in the same cluster.

ASO Version Lifecycle stage Development status Installation options
v2 Beta Under active development. Helm chart, GitHub release 2.x. See installation for example.
v1 Beta Bug and security fixes primarily. Helm chart, OperatorHub or GitHub release 1.x

ASO v2

Azure Service Operator v2 was built based on the lessons learned from ASO v1, with the following improvements:

  • Supports code-generated CRDs based on Azure OpenAPI specifications. This enables us to quickly add new resources as they are requested.
  • More powerful Status. You can view the actual state of the resource in Azure through ASO v2, which enables you to see server-side applied defaults and more easily debug issues.
  • Dedicated storage versions. This enables faster (and less error prone) support for new Azure API versions, even if there were significant changes in resource shape.
  • Uniformity. ASO v2 resources are very uniform due to their code-generated nature.
  • Clearer resource states. The state a resource is in is exposed via a Ready condition.

Learn more about Azure Service Operator v2

ASO v1

⚠️ We strongly recommend new users consider ASO v2 instead of ASO v1

Azure Service Operator v1 is no longer under active development. Bug and security fixes are still made.

Features may be added if the scope is small and the impact is large, but we are winding down investment into ASO v1. If you are already using ASO v1 a migration path/tool will be provided to eventually move ASO v1 resources to ASO v2. In the meantime you can continue using ASO v1 as you have been.

Learn more about Azure Service Operator v1

Contributing

The contribution guide covers everything you need to know about how you can contribute to Azure Service Operators.

Support

Please search open issues here. If your issue isn't already represented, please open a new one. The Azure Service Operator project maintainers will respond to the best of their abilities.

For more information, see SUPPORT.md.

Code of conduct

This project has adopted the Microsoft Open Source Code of Conduct. For more information, see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.