Azure Red Hat OpenShift RP
Перейти к файлу
bennerv 0721d978e9 Update docs and ssh-agent.sh usage and checks to ensure CLUSTER is specified
Change mycluster to cluster example usage

Minor refactors
2020-11-10 20:01:12 -05:00
.github rename file 2020-09-23 12:10:41 -05:00
.pipelines add location to cluster name in CI 2020-10-29 15:45:59 -06:00
cmd/aro Logs deployment mode during startup 2020-10-22 09:04:47 -07:00
deploy expose version blob 2020-11-04 10:56:11 +00:00
docs Update docs and ssh-agent.sh usage and checks to ensure CLUSTER is specified 2020-11-10 20:01:12 -05:00
hack Update docs and ssh-agent.sh usage and checks to ensure CLUSTER is specified 2020-11-10 20:01:12 -05:00
pkg don't request certificates with long common names 2020-11-05 19:31:15 -06:00
python Revert "Fix permissions on cluster deletion in az cli" 2020-11-04 12:03:43 -06:00
swagger Add x-ms-enum type to swagger and SDK 2020-09-10 08:39:00 +02:00
test bump kubeadminkubeconfig timeout 2020-10-28 19:58:58 -06:00
vendor vendor 2020-11-04 10:56:19 +00:00
.env Implement ARO extension 2019-12-15 22:06:27 -06:00
.gitignore Merge pull request #1088 from ihcsim/log-deployment-mode 2020-10-22 20:07:04 -05:00
.golangci.yml Add golangci-lint configuration file and instructions to run it. 2020-06-18 14:51:21 +10:00
.sha256sum Add x-ms-enum type to swagger and SDK 2020-09-10 08:39:00 +02:00
CONTRIBUTING.md add CONTRIBUTING.md 2019-12-16 19:16:53 -06:00
Dockerfile.aro Adds e2e image publishing into CI pipelines 2020-07-27 12:05:09 +01:00
Dockerfile.fluentbit Adding INT deployment pipelines (#214) 2020-03-09 08:40:34 -06:00
Dockerfile.proxy run microdnf update 2020-01-10 16:55:12 -06:00
Dockerfile.routefix add Dockerfile.routefix 2020-06-25 10:54:44 -05:00
Gopkg.lock vendor 2020-11-04 10:56:19 +00:00
Gopkg.toml vendor 2020-11-04 10:56:19 +00:00
LICENSE Initial commit 2019-10-15 22:43:52 -05:00
Makefile Refactor CI to Golang 2020-10-27 19:16:39 -06:00
README.md Update README with info on operator controllers (#1094) 2020-10-30 11:40:57 -06:00
SECURITY.md add SECURITY.md 2019-12-16 19:16:53 -06:00
cgmanifest.json vendor 2020-11-04 10:56:19 +00:00
env.example Add aro-operator 2020-07-29 15:46:23 +01:00
linter_exclusions.yml fix python linter 2020-08-06 12:59:42 +01:00

README.md

Azure Red Hat OpenShift Resource Provider

⚠️ Notice

For information relating to the generally available Azure Red Hat OpenShift v3 service, please see the following links:

Quickstarts

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repositories using our CLA.

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.

Repository map

  • .pipelines: CI workflows using Azure pipelines.

  • cmd/aro: RP entrypoint.

  • deploy: ARM templates to deploy RP in development and production.

  • docs: Documentation.

  • hack: Build scripts and utilities.

  • pkg: RP source code:

    • pkg/api: RP internal and external API definitions.

    • pkg/backend: RP backend workers.

    • pkg/client: Autogenerated ARO service Go client.

    • pkg/database: RP CosmosDB wrapper layer.

    • pkg/deploy: /deploy ARM template generation code.

    • pkg/env: RP environment-specific shims for running in production, development or test

    • pkg/frontend: RP frontend webserver.

    • pkg/genevalogging: Daemonset for Geneva logging.

    • pkg/install: OpenShift installer wrapper layer.

    • pkg/metrics: Handles RP metrics via statsd.

    • pkg/mirror: OpenShift release mirror tooling.

    • pkg/monitor: Monitors running clusters.

    • pkg/operator/controllers: A list of controllers instantiated by the operator component.

      • alertwebhook: Ensures that the receiver endpoint defined in the alertmanager-main secret matches the webserver endpoint at aro-operator-master.openshift-azure-operator:8080, to avoid the AlertmanagerReceiversNotConfigured warning.

      • checker: Watches the Cluster resource for changes and perform a set of checks for outbound internet connectivity.

      • genevalogging: Ensures all the Geneva logging resources in the openshift-azure-logging namespace matches the pre-defined specification found in pkg/operator/controllers/genevalogging/genevalogging.go.

      • pullsecret: Ensures that the ACR credentials in the openshift-config/pull-secret secret match those in the openshift/azure-operator/cluster secret.

      • workaround: Applies a set of temporay workarounds to the ARO cluster.

    • pkg/swagger: Swagger specification generation code.

    • pkg/util: Utility libraries.

  • python: Autogenerated ARO service Python client and az aro client extension.

  • swagger: Autogenerated ARO service Swagger specification.

  • test: End-to-end tests.

  • vendor: Vendored Go libraries.

Basic architecture

  • pkg/frontend is intended to become a spec-compliant RP web server. It is backed by CosmosDB. Incoming PUT/DELETE requests are written to the database with an non-terminal (Updating/Deleting) provisioningState.

  • pkg/backend reads documents with non-terminal provisioningStates, asynchronously updates them and finally updates document with a terminal provisioningState (Succeeded/Failed). The backend updates the document with a heartbeat - if this fails, the document will be picked up by a different worker.

  • As CosmosDB does not support document patch, care is taken to correctly pass through any fields in the internal model which the reader is unaware of (see github.com/ugorji/go/codec.MissingFielder). This is intended to help in upgrade cases and (in the future) with multiple microservices reading from the database in parallel.

  • Care is taken to correctly use optimistic concurrency to avoid document corruption through concurrent writes (see RetryOnPreconditionFailed).

  • The pkg/api architecture differs somewhat from github.com/openshift/openshift-azure: the intention is to fix the broken merge semantics and try pushing validation into the versioned APIs to improve error reporting.

  • Everything is intended to be crash/restart/upgrade-safe, horizontally scaleable, upgradeable...