Azure Red Hat OpenShift RP
Перейти к файлу
Mangirdas Judeikis 87f87b350b
add vnet to geneva output
2020-07-17 12:49:42 +01:00
.github Move pull request template to exist at the root of the .github directory 2020-06-25 13:51:13 -04:00
.pipelines adding koreacentral to nightly tests 2020-07-08 19:35:49 +02:00
cmd/aro add vnet to geneva output 2020-07-17 12:49:42 +01:00
deploy move fluentbit, mdm, mdsd image definitions to const.go 2020-07-10 15:45:01 -05:00
docs split RP and tooling SP 2020-07-01 16:37:27 +01:00
hack Merge pull request #852 from petrkotas/azure-purge 2020-07-03 11:51:43 +01:00
pkg add vnet to geneva output 2020-07-17 12:49:42 +01:00
python Fix assign_contributor_to_routetable 2020-06-23 11:34:52 +10:00
swagger remove swagger artifacts 2020-05-07 10:53:14 +01:00
test Merge pull request #869 from m1kola/668-e2e-admin-actions-part3 2020-07-10 16:03:05 -05:00
vendor vendor 2020-07-10 15:45:00 -05:00
.env Implement ARO extension 2019-12-15 22:06:27 -06:00
.gitignore Add PatchWithLease and address other review comments 2020-06-29 11:52:19 +10:00
.golangci.yml Add golangci-lint configuration file and instructions to run it. 2020-06-18 14:51:21 +10:00
.sha256sum add additional vm sizes 2020-04-15 20:42:36 -05:00
CONTRIBUTING.md add CONTRIBUTING.md 2019-12-16 19:16:53 -06:00
Dockerfile.aro run microdnf update 2020-01-10 16:55:12 -06: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-07-10 15:45:00 -05:00
Gopkg.toml Ability to support multi-version upgrades 2020-07-06 13:25:49 +01:00
LICENSE Initial commit 2019-10-15 22:43:52 -05:00
Makefile Merge remote-tracking branch 'upstream/master' into hawkowl/rp-commit-reporting 2020-06-29 11:53:29 +10:00
README.md Direct users to the Azure docs for production deployment 2020-04-06 21:16:14 -05:00
SECURITY.md add SECURITY.md 2019-12-16 19:16:53 -06:00
cgmanifest.json vendor 2020-07-10 15:45:00 -05:00
env.example installation instructions for multi-tenant development environment 2019-12-30 12:02:05 -06: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/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...