├── .github ├── dependabot.yml ├── update-deployment.sh └── workflows │ ├── admin-publish.yaml │ ├── agnosticv-operator-publish.yaml │ ├── catalog-api-publish.yaml │ ├── catalog-manager-publish.yaml │ ├── catalog-status-publish.yaml │ ├── catalog-ui-pr.yaml │ ├── catalog-ui-publish.yaml │ ├── cost-tracker-publish.yaml │ ├── lab-ui-manager-publish.yaml │ ├── notifier-publish.yaml │ ├── publish-helm-charts.yaml │ ├── ratings-publish.yaml │ └── workshop-manager-publish.yaml ├── .gitignore ├── .gitlab-ci.yml ├── LICENSE ├── README.adoc ├── admin ├── .gitignore ├── .s2i │ └── bin │ │ ├── assemble │ │ └── run ├── Dockerfile ├── README.adoc ├── api │ ├── app.py │ ├── babylon.py │ ├── json_formatter.py │ ├── logconfig.yaml │ ├── models │ │ ├── __init__.py │ │ ├── babylon_admin │ │ │ ├── __init__.py │ │ │ └── incident.py │ │ ├── custom_base.py │ │ └── database.py │ ├── routers │ │ ├── __init__.py │ │ ├── incidents.py │ │ ├── router_helper.py │ │ └── support.py │ └── schemas │ │ ├── __init__.py │ │ ├── incidents.py │ │ └── support.py ├── build-template.yaml ├── helm │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── database-secrets.yaml │ │ ├── deployment.yaml │ │ ├── namespace.yaml │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── servicenow-secret.yaml │ └── values.yaml └── requirements.txt ├── agnosticv-operator ├── .gitignore ├── .s2i │ └── bin │ │ └── assemble ├── .ssh │ └── known_hosts ├── Containerfile ├── Development.adoc ├── README.adoc ├── build-template.yaml ├── bump-version.sh ├── dev-scripts │ ├── README.md │ ├── create-webhook-secret.sh │ ├── createsecret.yaml │ ├── deploy-dev-minimal.yaml │ ├── deploy-dev-simple.sh │ └── webhook-example.yaml ├── devfile.yaml ├── helm │ ├── Chart.yaml │ ├── crds │ │ ├── agnosticvcomponents.yaml │ │ └── agnosticvrepos.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── agnosticvrepos.yaml │ │ ├── catalog-read-agnosticvcomponent-role.yaml │ │ ├── catalog-read-agnosticvcomponent-rolebinding.yaml │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── deployment.yaml │ │ ├── namespace.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── serviceaccount.yaml │ │ ├── webhook-route.yaml │ │ └── webhook-service.yaml │ ├── values-dev.yaml │ └── values.yaml ├── kopf-opt.sh ├── operator │ ├── agnosticvcomponent.py │ ├── agnosticvrepo.py │ ├── babylon.py │ ├── cachedkopfobject.py │ ├── catalogitem.py │ ├── configure_kopf_logging.py │ ├── infinite_relative_backoff.py │ ├── k8sobject.py │ ├── kopfobject.py │ ├── operator.py │ └── webhook_server.py ├── requirements.txt ├── test.yml └── test │ ├── ansible.cfg │ ├── functional │ ├── README.md │ ├── lib │ │ ├── assertions.sh │ │ ├── component-templates.sh │ │ ├── github.sh │ │ └── kubernetes.sh │ ├── run-tests.sh │ └── scenarios │ │ ├── 01-pr-create-component.sh │ │ ├── 02-pr-update-component.sh │ │ ├── 03-pr-merge-component.sh │ │ ├── 04-pr-close-without-merge.sh │ │ ├── 05-component-deletion.sh │ │ └── 06-deletion-isolation.sh │ ├── hosts │ ├── playbook.yaml │ └── roles │ └── test_core │ ├── defaults │ └── main.yml │ ├── files │ ├── account1.component-1.prod.anarchygovernor.yaml │ ├── account1.component-1.prod.catalogitem.yaml │ ├── account1.component-1.prod.resourceprovider.yaml │ ├── babylon-agnosticv-test.agnosticvrepo.yml │ └── babylon-agnosticv-test.secret.yml │ └── tasks │ ├── cleanup.yml │ ├── main.yml │ ├── setup.yml │ ├── teardown.yml │ └── test.yml ├── catalog-manager ├── .gitignore ├── Development.adoc ├── Dockerfile ├── build-template.yaml ├── devfile.yaml ├── helm │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── gpte-db-secrets.yaml │ │ ├── namespace.yaml │ │ ├── rbac.yaml │ │ ├── salesforce-api-secret.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── kopf-opt.sh ├── operator │ ├── babylon.py │ ├── catalog_item.py │ ├── catalog_item_service.py │ ├── configure_kopf_logging.py │ ├── infinite_relative_backoff.py │ ├── operator.py │ ├── rating.py │ └── utils.py └── requirements.txt ├── catalog ├── Development.adoc ├── README.adoc ├── api │ ├── Containerfile │ ├── README.adoc │ ├── app.py │ ├── config.py │ ├── hotfix.py │ ├── randomstring.py │ └── requirements.txt ├── babylon-catalog.route.yaml ├── build-template.yaml ├── helm │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── access │ │ │ └── clusterrole.yaml │ │ ├── api │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── salesforce-api-secret.yaml │ │ │ ├── sandbox-api-secret.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── system-status-configmap.yaml │ │ ├── namespace.yaml │ │ ├── oauth-proxy │ │ │ ├── clientSecret.yaml │ │ │ ├── cookieSecret.yaml │ │ │ ├── deployment.yaml │ │ │ ├── oauthclient.yaml │ │ │ ├── route.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ ├── redis │ │ │ ├── deployment.yaml │ │ │ ├── secret.yaml │ │ │ └── service.yaml │ │ ├── status │ │ │ ├── deployment.yaml │ │ │ └── service.yaml │ │ └── ui │ │ │ ├── deployment.yaml │ │ │ └── service.yaml │ └── values.yaml ├── jmeter │ ├── README.md │ ├── REDHAT_TEST_10-08-2021.jmx │ └── example.csv ├── status │ ├── Dockerfile │ ├── assets │ │ └── favicon.ico │ ├── index.html │ ├── interfaces │ │ ├── rhdp-partners.json │ │ └── rhpds.json │ ├── main.css │ ├── main.js │ └── nginx-default-cfg │ │ └── redirect.conf ├── ui │ ├── .dockerignore │ ├── .editorconfig │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc │ ├── Dockerfile │ ├── LICENSE │ ├── README.adoc │ ├── __mocks__ │ │ ├── fileMock.js │ │ └── styleMock.js │ ├── babel.config.js │ ├── dr-surge.js │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── nginx-default-cfg │ │ └── redirect.conf │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── Activity │ │ │ │ ├── Activity.css │ │ │ │ └── index.tsx │ │ │ ├── Admin │ │ │ │ ├── AnarchyActionInstance.tsx │ │ │ │ ├── AnarchyActionSelect.tsx │ │ │ │ ├── AnarchyActions.tsx │ │ │ │ ├── AnarchyActionsTable.tsx │ │ │ │ ├── AnarchyGovernorInstance.tsx │ │ │ │ ├── AnarchyGovernors.tsx │ │ │ │ ├── AnarchyRunInstance.tsx │ │ │ │ ├── AnarchyRunnerStateSelect.tsx │ │ │ │ ├── AnarchyRuns.tsx │ │ │ │ ├── AnarchyRunsTable.tsx │ │ │ │ ├── AnarchySubjectInstance.tsx │ │ │ │ ├── AnarchySubjectStateSelect.tsx │ │ │ │ ├── AnarchySubjects.tsx │ │ │ │ ├── AnarchySubjectsTable.tsx │ │ │ │ ├── CatalogIncidentsAlertList.tsx │ │ │ │ ├── CatalogItemAdmin.spec.tsx │ │ │ │ ├── CatalogItemAdmin.tsx │ │ │ │ ├── CreateResourcePoolFromResourceHandleModal.tsx │ │ │ │ ├── IncidentsAlertList.tsx │ │ │ │ ├── IncidentsPage.tsx │ │ │ │ ├── MultiWorkshops.tsx │ │ │ │ ├── RatingsList.tsx │ │ │ │ ├── RatingsPage.tsx │ │ │ │ ├── ResourceClaims.tsx │ │ │ │ ├── ResourceHandleInstance.tsx │ │ │ │ ├── ResourceHandles.tsx │ │ │ │ ├── ResourcePoolInstance.tsx │ │ │ │ ├── ResourcePoolMinAvailableInput.tsx │ │ │ │ ├── ResourcePoolStats.tsx │ │ │ │ ├── ResourcePools.tsx │ │ │ │ ├── ResourceProviderInstance.tsx │ │ │ │ ├── ResourceProviders.tsx │ │ │ │ ├── SystemStatus.tsx │ │ │ │ ├── Workshops.tsx │ │ │ │ ├── WorkshopsScheduled.tsx │ │ │ │ ├── admin.css │ │ │ │ ├── catalog-item-admin.css │ │ │ │ └── usePoolStatus.tsx │ │ │ ├── AppLayout │ │ │ │ ├── AppLayout.spec.tsx │ │ │ │ ├── AppLayout.tsx │ │ │ │ ├── Navigation.tsx │ │ │ │ └── NotificationDrawerContext.tsx │ │ │ ├── Catalog │ │ │ │ ├── Catalog.spec.tsx │ │ │ │ ├── Catalog.tsx │ │ │ │ ├── CatalogCategorySelector.tsx │ │ │ │ ├── CatalogContent.tsx │ │ │ │ ├── CatalogGridList.tsx │ │ │ │ ├── CatalogInterfaceDescription.tsx │ │ │ │ ├── CatalogItemCard.tsx │ │ │ │ ├── CatalogItemDetails.spec.tsx │ │ │ │ ├── CatalogItemDetails.tsx │ │ │ │ ├── CatalogItemForm.spec.tsx │ │ │ │ ├── CatalogItemForm.tsx │ │ │ │ ├── CatalogItemFormAutoStopDestroyModal.tsx │ │ │ │ ├── CatalogItemFormReducer.ts │ │ │ │ ├── CatalogItemHealthDisplay.tsx │ │ │ │ ├── CatalogItemIcon.tsx │ │ │ │ ├── CatalogItemListItem.tsx │ │ │ │ ├── CatalogLabelSelector.tsx │ │ │ │ ├── CatalogNamespaceSelect.tsx │ │ │ │ ├── CatalogRedirections.tsx │ │ │ │ ├── catalog-category-selector.css │ │ │ │ ├── catalog-item-card.css │ │ │ │ ├── catalog-item-details.css │ │ │ │ ├── catalog-item-form.css │ │ │ │ ├── catalog-item-list-item.css │ │ │ │ ├── catalog-item-request.css │ │ │ │ ├── catalog-item-workshop-form.css │ │ │ │ ├── catalog-label-selector.css │ │ │ │ ├── catalog-utils.ts │ │ │ │ ├── catalog.css │ │ │ │ └── icons │ │ │ │ │ └── openshift.png │ │ │ ├── Dashboard │ │ │ │ └── index.tsx │ │ │ ├── Header │ │ │ │ ├── Header.tsx │ │ │ │ ├── PublicHeader.tsx │ │ │ │ └── header.css │ │ │ ├── Modal │ │ │ │ ├── Modal.spec.tsx │ │ │ │ ├── Modal.tsx │ │ │ │ ├── modal.css │ │ │ │ └── useModal.tsx │ │ │ ├── MultiWorkshops │ │ │ │ ├── CatalogItemSelectorModal.tsx │ │ │ │ ├── ExternalWorkshopModal.tsx │ │ │ │ ├── LabIcon.tsx │ │ │ │ ├── MultiWorkshopCreate.tsx │ │ │ │ ├── MultiWorkshopDetail.tsx │ │ │ │ ├── MultiWorkshopLanding.tsx │ │ │ │ ├── MultiWorkshopList.tsx │ │ │ │ ├── hero-img.jpeg │ │ │ │ ├── multiworkshop-create.css │ │ │ │ ├── multiworkshop-detail.css │ │ │ │ ├── multiworkshop-landing.css │ │ │ │ ├── multiworkshop-list.css │ │ │ │ └── purposeOptions.json │ │ │ ├── NotFound │ │ │ │ └── NotFound.tsx │ │ │ ├── Services │ │ │ │ ├── InfoTab.tsx │ │ │ │ ├── ServiceActions.spec.tsx │ │ │ │ ├── ServiceActions.tsx │ │ │ │ ├── ServiceItemStatus.tsx │ │ │ │ ├── ServiceOpenStackConsole.tsx │ │ │ │ ├── ServiceStatus.spec.tsx │ │ │ │ ├── ServiceStatus.tsx │ │ │ │ ├── ServiceUsers.tsx │ │ │ │ ├── Services.tsx │ │ │ │ ├── ServicesAction.tsx │ │ │ │ ├── ServicesActionRating.tsx │ │ │ │ ├── ServicesCreateWorkshop.tsx │ │ │ │ ├── ServicesItem.tsx │ │ │ │ ├── ServicesList.tsx │ │ │ │ ├── ServicesScheduleAction.tsx │ │ │ │ ├── renderResourceClaimRow.tsx │ │ │ │ ├── renderWorkshopRow.tsx │ │ │ │ ├── service-item-status.css │ │ │ │ ├── service-status.css │ │ │ │ ├── service-utils.ts │ │ │ │ ├── services-delete-modal.css │ │ │ │ ├── services-item.css │ │ │ │ ├── services-list.css │ │ │ │ └── services-schedule-action-modal.css │ │ │ ├── Support │ │ │ │ ├── SupportPage.tsx │ │ │ │ └── support-page.css │ │ │ ├── Workshop │ │ │ │ ├── Workshop.tsx │ │ │ │ ├── WorkshopContent.tsx │ │ │ │ ├── WorkshopHeader.tsx │ │ │ │ ├── WorkshopLogin.tsx │ │ │ │ ├── workshop-content.css │ │ │ │ ├── workshop-login.css │ │ │ │ ├── workshop-utils.ts │ │ │ │ ├── workshop.css │ │ │ │ └── workshopApi.ts │ │ │ ├── Workshops │ │ │ │ ├── WorkshopActions.tsx │ │ │ │ ├── WorkshopScheduleAction.tsx │ │ │ │ ├── WorkshopStatus.tsx │ │ │ │ ├── WorkshopsItem.tsx │ │ │ │ ├── WorkshopsItemDetails.tsx │ │ │ │ ├── WorkshopsItemProvisioning.tsx │ │ │ │ ├── WorkshopsItemProvisioningItem.tsx │ │ │ │ ├── WorkshopsItemServices.tsx │ │ │ │ ├── WorkshopsItemUserAssignments.tsx │ │ │ │ ├── workshops-item-details.css │ │ │ │ ├── workshops-item-services.css │ │ │ │ ├── workshops-item.css │ │ │ │ └── workshops-utils.tsx │ │ │ ├── __mocks__ │ │ │ │ ├── anarchySubject--start-failed.json │ │ │ │ ├── anarchySubject.json │ │ │ │ ├── api.ts │ │ │ │ ├── catalogItem.json │ │ │ │ ├── catalogItemIncident.json │ │ │ │ ├── catalogItems.json │ │ │ │ ├── resourceClaim--provision-fail.json │ │ │ │ ├── resourceClaim--stopped.json │ │ │ │ └── resourceClaim.json │ │ │ ├── api.ts │ │ │ ├── app.css │ │ │ ├── app.spec.tsx │ │ │ ├── bgimages │ │ │ │ ├── Patternfly-Logo.svg │ │ │ │ ├── RHPDS-Logo-Beta.svg │ │ │ │ ├── RHPDS-Logo.svg │ │ │ │ ├── RedHat-Logo.svg │ │ │ │ ├── Summit-Logo.svg │ │ │ │ ├── external-link.svg │ │ │ │ ├── hero-img.jpeg │ │ │ │ ├── octicons-16.svg │ │ │ │ └── openshift-icon.svg │ │ │ ├── components │ │ │ │ ├── ActionDropdown.tsx │ │ │ │ ├── ActivityPurposeSelector.tsx │ │ │ │ ├── AdocWrapper.tsx │ │ │ │ ├── AnsibleRunLog.tsx │ │ │ │ ├── AutoStopDestroy.tsx │ │ │ │ ├── BetaBadge.tsx │ │ │ │ ├── BulkUserAssignmentModal.tsx │ │ │ │ ├── ButtonCircleIcon.tsx │ │ │ │ ├── ConditionalWrapper.tsx │ │ │ │ ├── CopyToClipboard.tsx │ │ │ │ ├── CurrencyAmount.tsx │ │ │ │ ├── DateTimePicker.tsx │ │ │ │ ├── DynamicFormInput.tsx │ │ │ │ ├── EditableText.tsx │ │ │ │ ├── Editor │ │ │ │ │ ├── AutoLinkPlugin.tsx │ │ │ │ │ ├── Editor.tsx │ │ │ │ │ ├── EditorViewer.tsx │ │ │ │ │ ├── Theme.tsx │ │ │ │ │ ├── ToolbarPlugin.tsx │ │ │ │ │ ├── editor.css │ │ │ │ │ └── images │ │ │ │ │ │ ├── emoji │ │ │ │ │ │ ├── 1F600.png │ │ │ │ │ │ ├── 1F641.png │ │ │ │ │ │ ├── 1F642.png │ │ │ │ │ │ ├── 2764.png │ │ │ │ │ │ └── LICENSE.md │ │ │ │ │ │ └── icons │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── arrow-clockwise.svg │ │ │ │ │ │ ├── arrow-counterclockwise.svg │ │ │ │ │ │ ├── chat-square-quote.svg │ │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ │ ├── code.svg │ │ │ │ │ │ ├── journal-code.svg │ │ │ │ │ │ ├── journal-text.svg │ │ │ │ │ │ ├── justify.svg │ │ │ │ │ │ ├── link.svg │ │ │ │ │ │ ├── list-ol.svg │ │ │ │ │ │ ├── list-ul.svg │ │ │ │ │ │ ├── pencil-fill.svg │ │ │ │ │ │ ├── text-center.svg │ │ │ │ │ │ ├── text-left.svg │ │ │ │ │ │ ├── text-paragraph.svg │ │ │ │ │ │ ├── text-right.svg │ │ │ │ │ │ ├── type-bold.svg │ │ │ │ │ │ ├── type-h1.svg │ │ │ │ │ │ ├── type-h2.svg │ │ │ │ │ │ ├── type-h3.svg │ │ │ │ │ │ ├── type-italic.svg │ │ │ │ │ │ ├── type-strikethrough.svg │ │ │ │ │ │ └── type-underline.svg │ │ │ │ ├── ErrorBoundaryPage.tsx │ │ │ │ ├── Footer.tsx │ │ │ │ ├── Hero.tsx │ │ │ │ ├── ImpersonateUserModal.tsx │ │ │ │ ├── IncidentsBanner.tsx │ │ │ │ ├── IncidentsNotificationDrawer.tsx │ │ │ │ ├── KeywordSearchInput.tsx │ │ │ │ ├── LabInterfaceLink.tsx │ │ │ │ ├── Label.tsx │ │ │ │ ├── LoadingIcon.tsx │ │ │ │ ├── LoadingSection.tsx │ │ │ │ ├── LocalTimestamp.tsx │ │ │ │ ├── NotFound.tsx │ │ │ │ ├── OpenshiftConsoleLink.tsx │ │ │ │ ├── PatientNumberInput.tsx │ │ │ │ ├── PilotBadge.tsx │ │ │ │ ├── ProjectSelector.tsx │ │ │ │ ├── RedHatLogo.tsx │ │ │ │ ├── RefreshButton.tsx │ │ │ │ ├── ResourceClaimDeleteModal.tsx │ │ │ │ ├── ResourceClaimStartModal.tsx │ │ │ │ ├── ResourceClaimStopModal.tsx │ │ │ │ ├── SalesforceItemsEditModal.tsx │ │ │ │ ├── SalesforceItemsField.tsx │ │ │ │ ├── SalesforceItemsList.tsx │ │ │ │ ├── SearchInputString.tsx │ │ │ │ ├── SearchSalesforceIdModal.tsx │ │ │ │ ├── SelectableTable.tsx │ │ │ │ ├── SelectableTableWithPagination.tsx │ │ │ │ ├── ShareLink.tsx │ │ │ │ ├── StarRating.tsx │ │ │ │ ├── StatusPageIcons │ │ │ │ │ ├── DegradedPerformance.tsx │ │ │ │ │ ├── MajorOutage.tsx │ │ │ │ │ ├── Operational.tsx │ │ │ │ │ ├── PartialOutage.tsx │ │ │ │ │ ├── UnderMaintenance.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── TermsOfService.tsx │ │ │ │ ├── TimeInterval.tsx │ │ │ │ ├── UnexpectedError.tsx │ │ │ │ ├── UptimeDisplay.tsx │ │ │ │ ├── UserInterfaceLogo.tsx │ │ │ │ ├── WorkshopActionModal.tsx │ │ │ │ ├── action-dropdown.css │ │ │ │ ├── adoc-wrapper.css │ │ │ │ ├── ansible-run-log.css │ │ │ │ ├── bulk-user-assignment-modal.css │ │ │ │ ├── button-circle-icon.css │ │ │ │ ├── date-time-picker.css │ │ │ │ ├── editable-text.css │ │ │ │ ├── footer.css │ │ │ │ ├── impersonate-user-modal.css │ │ │ │ ├── incidents-banner.css │ │ │ │ ├── loading-icon.css │ │ │ │ ├── openshift-console-link.css │ │ │ │ └── project-selector.css │ │ │ ├── custom-media.css │ │ │ ├── index.tsx │ │ │ ├── reducers.ts │ │ │ ├── routes.tsx │ │ │ ├── store │ │ │ │ └── index.ts │ │ │ ├── types.ts │ │ │ ├── util.ts │ │ │ └── utils │ │ │ │ ├── react-window-scroller.tsx │ │ │ │ ├── test-utils.tsx │ │ │ │ ├── useDebounce.tsx │ │ │ │ ├── useDebounceState.ts │ │ │ │ ├── useDocumentTitle.ts │ │ │ │ ├── useHelpLink.tsx │ │ │ │ ├── useImpersonateUser.tsx │ │ │ │ ├── useInterfaceConfig.tsx │ │ │ │ ├── useMatchMutate.tsx │ │ │ │ ├── useRect.tsx │ │ │ │ ├── useScript.ts │ │ │ │ ├── useSession.tsx │ │ │ │ └── useSystemStatus.tsx │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── index.tsx │ │ ├── public │ │ │ ├── incidents_technical_support.csv │ │ │ ├── interfaces │ │ │ │ ├── rhdp-partners.json │ │ │ │ └── rhpds.json │ │ │ └── monitor.js │ │ └── typings.d.ts │ ├── stylePaths.js │ ├── test-setup.ts │ ├── tsconfig.json │ ├── webpack.common.js │ ├── webpack.dev.js │ └── webpack.prod.js └── util │ └── make-catalog-item.py ├── cost-tracker ├── .gitignore ├── Development.adoc ├── Dockerfile ├── build-template.yaml ├── devfile.yaml ├── helm │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── aws-sandbox-manager-secret.yaml │ │ ├── deployment.yaml │ │ ├── namespace.yaml │ │ ├── rbac.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── kopf-opt.sh ├── operator │ ├── anarchy_subject.py │ ├── aws_sandbox_cost.py │ ├── cost_tracker_state.py │ ├── infinite_relative_backoff.py │ ├── operator.py │ └── resource_claim.py └── requirements.txt ├── docs ├── AgnosticV_Operator.md ├── Architecture_Poolboy.adoc ├── Configuring_OpenShift.adoc ├── Deploying_Babylon.adoc ├── Deploying_OpenShift.adoc ├── Deploying_dark_tower.adoc ├── Metrics.adoc ├── README.adoc └── images │ ├── BabylonArchitecture-Poolboy.png │ └── babylon-high-level.png ├── helm ├── .helmignore ├── Chart.yaml ├── crds │ ├── agnosticvcomponents.yaml │ ├── agnosticvrepos.yaml │ ├── catalogitems.babylon.gpte.redhat.com.yaml │ ├── multiworkshops.babylon.gpte.redhat.com.yaml │ ├── workshopprovisions.babylon.gpte.redhat.com.yaml │ ├── workshops.babylon.gpte.redhat.com.yaml │ └── workshopuserassignments.babylon.gpte.redhat.com.yaml ├── templates │ ├── _helpers.tpl │ ├── admin │ │ ├── database-secrets.yaml │ │ ├── deployment.yaml │ │ ├── namespace.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── servicenow-secret.yaml │ ├── agnosticv │ │ ├── agnosticvrepos.yaml │ │ └── operator │ │ │ ├── catalog-read-agnosticvcomponent-role.yaml │ │ │ ├── catalog-read-agnosticvcomponent-rolebinding.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── webhook-route.yaml │ │ │ └── webhook-service.yaml │ ├── anarchy │ │ ├── anarchy-runner-access.yaml │ │ ├── clusterroles.yaml │ │ ├── communes.yaml │ │ └── namespaces.yaml │ ├── catalog │ │ ├── interfaces │ │ │ ├── api │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── salesforce-api-secret.yaml │ │ │ │ ├── sandbox-api-secret.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── system-status-configmap.yaml │ │ │ ├── namespaces.yaml │ │ │ ├── oauth-proxy │ │ │ │ ├── certificate.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── oauth-proxy-cookie-secret.yaml │ │ │ │ ├── oauthclientconfig.yaml │ │ │ │ ├── route.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── templates-configmap.yaml │ │ │ ├── redis │ │ │ │ ├── deployment.yaml │ │ │ │ ├── secret.yaml │ │ │ │ └── service.yaml │ │ │ ├── status │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ └── ui │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ └── namespaces.yaml │ ├── clusterroles │ │ ├── babylon-cluster-admin.yaml │ │ ├── babylon-cluster-reader.yaml │ │ ├── babylon-user-catalog-access.yaml │ │ ├── babylon-user-service-access.yaml │ │ ├── babylon-workshop-admin.yaml │ │ └── catalog-access.yaml │ ├── config │ │ └── namespace.yaml │ ├── notifier │ │ ├── anarchy-access.yaml │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── deployment.yaml │ │ ├── namespace.yaml │ │ ├── redis │ │ │ ├── deployment.yaml │ │ │ ├── persistentvolumeclaim.yaml │ │ │ ├── secret.yaml │ │ │ └── service.yaml │ │ ├── serviceaccount.yaml │ │ └── smtp-secret.yaml │ ├── ratings │ │ ├── database-secrets.yaml │ │ ├── deployment.yaml │ │ ├── namespace.yaml │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ ├── resourceBroker │ │ ├── clusterrole.yaml │ │ └── clusterrolebinding.yaml │ └── workshopManager │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── deployment.yaml │ │ ├── namespace.yaml │ │ └── serviceaccount.yaml └── values.yaml ├── lab-ui-manager ├── .gitignore ├── Development.adoc ├── Dockerfile ├── README.adoc ├── build-template.yaml ├── devfile.yaml ├── helm │ ├── Chart.yaml │ ├── crds │ │ ├── bookbagbuilds.babylon.gpte.redhat.com.yaml │ │ └── bookbagdeployments.babylon.gpte.redhat.com.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── namespace.yaml │ │ ├── rbac.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── kopf-opt.sh ├── operator │ ├── infinite_relative_backoff.py │ └── operator.py ├── requirements.txt ├── user-configmap.resourceclaim.yaml ├── user-configmap.resourcehandle.yaml └── user-configmap.resourceprovider.yaml ├── notifier ├── .gitignore ├── .s2i │ └── bin │ │ └── assemble ├── Containerfile ├── Development.adoc ├── README.adoc ├── build-template.yaml ├── devfile.yaml ├── helm │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── namespace.yaml │ │ ├── rbac.yaml │ │ ├── redis │ │ │ ├── deployment.yaml │ │ │ ├── pvc.yaml │ │ │ ├── secret.yaml │ │ │ └── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── smtp-secret.yaml │ │ └── tls-secret.yaml │ └── values.yaml ├── kopf-opt.sh ├── operator │ ├── babylon.py │ ├── catalog_item.py │ ├── catalog_namespace.py │ ├── configure_kopf_logging.py │ ├── infinite_relative_backoff.py │ ├── operator.py │ ├── resource_claim.py │ ├── service_namespace.py │ ├── templates │ │ ├── base.mjml.j2 │ │ ├── provision-failed.mjml.j2 │ │ ├── provision-started.mjml.j2 │ │ ├── retirement-scheduled.mjml.j2 │ │ ├── service-deleted.mjml.j2 │ │ ├── service-ready.mjml.j2 │ │ ├── start-complete.mjml.j2 │ │ ├── start-failed.mjml.j2 │ │ ├── stop-complete.mjml.j2 │ │ ├── stop-failed.mjml.j2 │ │ ├── stop-scheduled.mjml.j2 │ │ ├── workshop-deleted.mjml.j2 │ │ ├── workshop-provision-started.mjml.j2 │ │ ├── workshop-ready.mjml.j2 │ │ ├── workshop-retirement-scheduled.mjml.j2 │ │ └── wrapper.mjml.j2 │ └── workshop.py └── requirements.txt ├── openshift └── config │ ├── README.adoc │ ├── common │ ├── helm │ │ ├── babylon-admin │ │ ├── babylon-agnosticv-operator │ │ ├── babylon-catalog │ │ ├── babylon-catalog-manager │ │ ├── babylon-config │ │ │ ├── Chart.yaml │ │ │ ├── crds │ │ │ │ ├── catalogitems.babylon.gpte.redhat.com.yaml │ │ │ │ ├── workshopprovisions.babylon.gpte.redhat.com.yaml │ │ │ │ └── workshops.babylon.gpte.redhat.com.yaml │ │ │ ├── templates │ │ │ │ ├── anarchy.yaml │ │ │ │ ├── babylon-resourceprovider.yaml │ │ │ │ ├── catalog-namespaces.yaml │ │ │ │ ├── cross-cluster-backup.yaml │ │ │ │ ├── rbac.yaml │ │ │ │ ├── service-request-configmap.resourceprovider.yaml │ │ │ │ └── user-configmap.resourceprovider.yaml │ │ │ └── values.yaml │ │ ├── babylon-cost-tracker │ │ ├── babylon-lab-ui-manager │ │ ├── babylon-notifier │ │ ├── babylon-ratings │ │ └── babylon-workshop-manager │ ├── templates │ │ ├── anarchy-install.yaml.j2 │ │ └── anarchy-k8s-config │ │ │ └── anarchysubjects │ │ │ └── babylon.yaml.j2 │ └── vars.yaml │ ├── env │ ├── dev │ │ └── main.yaml │ ├── prod │ │ └── main.yaml │ └── test │ │ └── main.yaml │ ├── main.yaml │ └── setup-playbook.yaml ├── playbooks ├── filter_plugins │ └── parameters.py ├── service-destroy.yaml ├── service-lifecycle.yaml ├── service-provision.yaml ├── service-status.yaml ├── tasks │ └── write-tower-rc.yaml └── unittest-filter-plugins.py ├── ratings ├── .gitignore ├── .s2i │ └── bin │ │ ├── assemble │ │ └── run ├── Dockerfile ├── README.adoc ├── api │ ├── app.py │ ├── babylon.py │ ├── json_formatter.py │ ├── logconfig.yaml │ ├── models │ │ ├── __init__.py │ │ ├── bookmark.py │ │ ├── catalog_item.py │ │ ├── catalog_resource.py │ │ ├── custom_base.py │ │ ├── database.py │ │ ├── provision.py │ │ ├── provision_request.py │ │ ├── purpose.py │ │ ├── rating.py │ │ ├── reporting_config.py │ │ ├── requirements.txt │ │ ├── user.py │ │ ├── workshop.py │ │ └── workshop_assignment.py │ ├── routers │ │ ├── __init__.py │ │ ├── bookmarks.py │ │ ├── pagination.py │ │ └── ratings.py │ └── schemas │ │ ├── __init__.py │ │ ├── bookmarks.py │ │ ├── catalog_item.py │ │ ├── provision.py │ │ ├── purpose.py │ │ ├── ratings.py │ │ ├── request.py │ │ ├── user.py │ │ └── workshop.py ├── build-template.yaml ├── helm │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── database-secrets.yaml │ │ ├── deployment.yaml │ │ ├── namespace.yaml │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml └── requirements.txt ├── sonar-project.properties ├── test └── README.md ├── tools └── babylon-status │ ├── governor_versions.py │ ├── pool_status.py │ └── status.py └── workshop-manager ├── .gitignore ├── Containerfile ├── Development.adoc ├── README.adoc ├── build-template.yaml ├── devfile.yaml ├── helm ├── Chart.yaml ├── templates │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── namespace.yaml │ ├── rbac.yaml │ └── serviceaccount.yaml └── values.yaml ├── kopf-opt.sh ├── operator ├── babylon.py ├── cachedkopfobject.py ├── catalogitem.py ├── configure_kopf_logging.py ├── infinite_relative_backoff.py ├── k8sobject.py ├── kopfobject.py ├── labuserinterface.py ├── multiworkshop.py ├── operator.py ├── resourceclaim.py ├── resourceprovider.py ├── userassignment.py ├── workshop.py ├── workshopprovision.py └── workshopuserassignment.py └── requirements.txt /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/update-deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/.github/update-deployment.sh -------------------------------------------------------------------------------- /.github/workflows/admin-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/.github/workflows/admin-publish.yaml -------------------------------------------------------------------------------- /.github/workflows/agnosticv-operator-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/.github/workflows/agnosticv-operator-publish.yaml -------------------------------------------------------------------------------- /.github/workflows/catalog-api-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/.github/workflows/catalog-api-publish.yaml -------------------------------------------------------------------------------- /.github/workflows/catalog-manager-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/.github/workflows/catalog-manager-publish.yaml -------------------------------------------------------------------------------- /.github/workflows/catalog-status-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/.github/workflows/catalog-status-publish.yaml -------------------------------------------------------------------------------- /.github/workflows/catalog-ui-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/.github/workflows/catalog-ui-pr.yaml -------------------------------------------------------------------------------- /.github/workflows/catalog-ui-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/.github/workflows/catalog-ui-publish.yaml -------------------------------------------------------------------------------- /.github/workflows/cost-tracker-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/.github/workflows/cost-tracker-publish.yaml -------------------------------------------------------------------------------- /.github/workflows/lab-ui-manager-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/.github/workflows/lab-ui-manager-publish.yaml -------------------------------------------------------------------------------- /.github/workflows/notifier-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/.github/workflows/notifier-publish.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-helm-charts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/.github/workflows/publish-helm-charts.yaml -------------------------------------------------------------------------------- /.github/workflows/ratings-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/.github/workflows/ratings-publish.yaml -------------------------------------------------------------------------------- /.github/workflows/workshop-manager-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/.github/workflows/workshop-manager-publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/README.adoc -------------------------------------------------------------------------------- /admin/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .odo -------------------------------------------------------------------------------- /admin/.s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/.s2i/bin/assemble -------------------------------------------------------------------------------- /admin/.s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/.s2i/bin/run -------------------------------------------------------------------------------- /admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/Dockerfile -------------------------------------------------------------------------------- /admin/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/README.adoc -------------------------------------------------------------------------------- /admin/api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/api/app.py -------------------------------------------------------------------------------- /admin/api/babylon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/api/babylon.py -------------------------------------------------------------------------------- /admin/api/json_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/api/json_formatter.py -------------------------------------------------------------------------------- /admin/api/logconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/api/logconfig.yaml -------------------------------------------------------------------------------- /admin/api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/api/models/__init__.py -------------------------------------------------------------------------------- /admin/api/models/babylon_admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/api/models/babylon_admin/__init__.py -------------------------------------------------------------------------------- /admin/api/models/babylon_admin/incident.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/api/models/babylon_admin/incident.py -------------------------------------------------------------------------------- /admin/api/models/custom_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/api/models/custom_base.py -------------------------------------------------------------------------------- /admin/api/models/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/api/models/database.py -------------------------------------------------------------------------------- /admin/api/routers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/api/routers/__init__.py -------------------------------------------------------------------------------- /admin/api/routers/incidents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/api/routers/incidents.py -------------------------------------------------------------------------------- /admin/api/routers/router_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/api/routers/router_helper.py -------------------------------------------------------------------------------- /admin/api/routers/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/api/routers/support.py -------------------------------------------------------------------------------- /admin/api/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/api/schemas/__init__.py -------------------------------------------------------------------------------- /admin/api/schemas/incidents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/api/schemas/incidents.py -------------------------------------------------------------------------------- /admin/api/schemas/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/api/schemas/support.py -------------------------------------------------------------------------------- /admin/build-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/build-template.yaml -------------------------------------------------------------------------------- /admin/helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/helm/Chart.yaml -------------------------------------------------------------------------------- /admin/helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /admin/helm/templates/database-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/helm/templates/database-secrets.yaml -------------------------------------------------------------------------------- /admin/helm/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/helm/templates/deployment.yaml -------------------------------------------------------------------------------- /admin/helm/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/helm/templates/namespace.yaml -------------------------------------------------------------------------------- /admin/helm/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/helm/templates/rbac.yaml -------------------------------------------------------------------------------- /admin/helm/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/helm/templates/service.yaml -------------------------------------------------------------------------------- /admin/helm/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/helm/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /admin/helm/templates/servicenow-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/helm/templates/servicenow-secret.yaml -------------------------------------------------------------------------------- /admin/helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/helm/values.yaml -------------------------------------------------------------------------------- /admin/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/admin/requirements.txt -------------------------------------------------------------------------------- /agnosticv-operator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/.gitignore -------------------------------------------------------------------------------- /agnosticv-operator/.s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/.s2i/bin/assemble -------------------------------------------------------------------------------- /agnosticv-operator/.ssh/known_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/.ssh/known_hosts -------------------------------------------------------------------------------- /agnosticv-operator/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/Containerfile -------------------------------------------------------------------------------- /agnosticv-operator/Development.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/Development.adoc -------------------------------------------------------------------------------- /agnosticv-operator/README.adoc: -------------------------------------------------------------------------------- 1 | = Babylon Config Operator 2 | -------------------------------------------------------------------------------- /agnosticv-operator/build-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/build-template.yaml -------------------------------------------------------------------------------- /agnosticv-operator/bump-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/bump-version.sh -------------------------------------------------------------------------------- /agnosticv-operator/dev-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/dev-scripts/README.md -------------------------------------------------------------------------------- /agnosticv-operator/dev-scripts/create-webhook-secret.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/dev-scripts/create-webhook-secret.sh -------------------------------------------------------------------------------- /agnosticv-operator/dev-scripts/createsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/dev-scripts/createsecret.yaml -------------------------------------------------------------------------------- /agnosticv-operator/dev-scripts/deploy-dev-minimal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/dev-scripts/deploy-dev-minimal.yaml -------------------------------------------------------------------------------- /agnosticv-operator/dev-scripts/deploy-dev-simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/dev-scripts/deploy-dev-simple.sh -------------------------------------------------------------------------------- /agnosticv-operator/dev-scripts/webhook-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/dev-scripts/webhook-example.yaml -------------------------------------------------------------------------------- /agnosticv-operator/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/devfile.yaml -------------------------------------------------------------------------------- /agnosticv-operator/helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/helm/Chart.yaml -------------------------------------------------------------------------------- /agnosticv-operator/helm/crds/agnosticvcomponents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/helm/crds/agnosticvcomponents.yaml -------------------------------------------------------------------------------- /agnosticv-operator/helm/crds/agnosticvrepos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/helm/crds/agnosticvrepos.yaml -------------------------------------------------------------------------------- /agnosticv-operator/helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /agnosticv-operator/helm/templates/agnosticvrepos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/helm/templates/agnosticvrepos.yaml -------------------------------------------------------------------------------- /agnosticv-operator/helm/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/helm/templates/clusterrole.yaml -------------------------------------------------------------------------------- /agnosticv-operator/helm/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/helm/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /agnosticv-operator/helm/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/helm/templates/deployment.yaml -------------------------------------------------------------------------------- /agnosticv-operator/helm/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/helm/templates/namespace.yaml -------------------------------------------------------------------------------- /agnosticv-operator/helm/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/helm/templates/role.yaml -------------------------------------------------------------------------------- /agnosticv-operator/helm/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/helm/templates/rolebinding.yaml -------------------------------------------------------------------------------- /agnosticv-operator/helm/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/helm/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /agnosticv-operator/helm/templates/webhook-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/helm/templates/webhook-route.yaml -------------------------------------------------------------------------------- /agnosticv-operator/helm/templates/webhook-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/helm/templates/webhook-service.yaml -------------------------------------------------------------------------------- /agnosticv-operator/helm/values-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/helm/values-dev.yaml -------------------------------------------------------------------------------- /agnosticv-operator/helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/helm/values.yaml -------------------------------------------------------------------------------- /agnosticv-operator/kopf-opt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/kopf-opt.sh -------------------------------------------------------------------------------- /agnosticv-operator/operator/agnosticvcomponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/operator/agnosticvcomponent.py -------------------------------------------------------------------------------- /agnosticv-operator/operator/agnosticvrepo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/operator/agnosticvrepo.py -------------------------------------------------------------------------------- /agnosticv-operator/operator/babylon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/operator/babylon.py -------------------------------------------------------------------------------- /agnosticv-operator/operator/cachedkopfobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/operator/cachedkopfobject.py -------------------------------------------------------------------------------- /agnosticv-operator/operator/catalogitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/operator/catalogitem.py -------------------------------------------------------------------------------- /agnosticv-operator/operator/configure_kopf_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/operator/configure_kopf_logging.py -------------------------------------------------------------------------------- /agnosticv-operator/operator/infinite_relative_backoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/operator/infinite_relative_backoff.py -------------------------------------------------------------------------------- /agnosticv-operator/operator/k8sobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/operator/k8sobject.py -------------------------------------------------------------------------------- /agnosticv-operator/operator/kopfobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/operator/kopfobject.py -------------------------------------------------------------------------------- /agnosticv-operator/operator/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/operator/operator.py -------------------------------------------------------------------------------- /agnosticv-operator/operator/webhook_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/operator/webhook_server.py -------------------------------------------------------------------------------- /agnosticv-operator/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/requirements.txt -------------------------------------------------------------------------------- /agnosticv-operator/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/test.yml -------------------------------------------------------------------------------- /agnosticv-operator/test/ansible.cfg: -------------------------------------------------------------------------------- 1 | [defaults] 2 | inventory = hosts 3 | -------------------------------------------------------------------------------- /agnosticv-operator/test/functional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/test/functional/README.md -------------------------------------------------------------------------------- /agnosticv-operator/test/functional/lib/assertions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/test/functional/lib/assertions.sh -------------------------------------------------------------------------------- /agnosticv-operator/test/functional/lib/component-templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/test/functional/lib/component-templates.sh -------------------------------------------------------------------------------- /agnosticv-operator/test/functional/lib/github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/test/functional/lib/github.sh -------------------------------------------------------------------------------- /agnosticv-operator/test/functional/lib/kubernetes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/test/functional/lib/kubernetes.sh -------------------------------------------------------------------------------- /agnosticv-operator/test/functional/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/test/functional/run-tests.sh -------------------------------------------------------------------------------- /agnosticv-operator/test/functional/scenarios/01-pr-create-component.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/test/functional/scenarios/01-pr-create-component.sh -------------------------------------------------------------------------------- /agnosticv-operator/test/functional/scenarios/02-pr-update-component.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/test/functional/scenarios/02-pr-update-component.sh -------------------------------------------------------------------------------- /agnosticv-operator/test/functional/scenarios/03-pr-merge-component.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/test/functional/scenarios/03-pr-merge-component.sh -------------------------------------------------------------------------------- /agnosticv-operator/test/functional/scenarios/05-component-deletion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/test/functional/scenarios/05-component-deletion.sh -------------------------------------------------------------------------------- /agnosticv-operator/test/functional/scenarios/06-deletion-isolation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/test/functional/scenarios/06-deletion-isolation.sh -------------------------------------------------------------------------------- /agnosticv-operator/test/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/test/hosts -------------------------------------------------------------------------------- /agnosticv-operator/test/playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/test/playbook.yaml -------------------------------------------------------------------------------- /agnosticv-operator/test/roles/test_core/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/test/roles/test_core/defaults/main.yml -------------------------------------------------------------------------------- /agnosticv-operator/test/roles/test_core/tasks/cleanup.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /agnosticv-operator/test/roles/test_core/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/test/roles/test_core/tasks/main.yml -------------------------------------------------------------------------------- /agnosticv-operator/test/roles/test_core/tasks/setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/test/roles/test_core/tasks/setup.yml -------------------------------------------------------------------------------- /agnosticv-operator/test/roles/test_core/tasks/teardown.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /agnosticv-operator/test/roles/test_core/tasks/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/agnosticv-operator/test/roles/test_core/tasks/test.yml -------------------------------------------------------------------------------- /catalog-manager/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .odo -------------------------------------------------------------------------------- /catalog-manager/Development.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog-manager/Development.adoc -------------------------------------------------------------------------------- /catalog-manager/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog-manager/Dockerfile -------------------------------------------------------------------------------- /catalog-manager/build-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog-manager/build-template.yaml -------------------------------------------------------------------------------- /catalog-manager/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog-manager/devfile.yaml -------------------------------------------------------------------------------- /catalog-manager/helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog-manager/helm/Chart.yaml -------------------------------------------------------------------------------- /catalog-manager/helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog-manager/helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /catalog-manager/helm/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog-manager/helm/templates/deployment.yaml -------------------------------------------------------------------------------- /catalog-manager/helm/templates/gpte-db-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog-manager/helm/templates/gpte-db-secrets.yaml -------------------------------------------------------------------------------- /catalog-manager/helm/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog-manager/helm/templates/namespace.yaml -------------------------------------------------------------------------------- /catalog-manager/helm/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog-manager/helm/templates/rbac.yaml -------------------------------------------------------------------------------- /catalog-manager/helm/templates/salesforce-api-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog-manager/helm/templates/salesforce-api-secret.yaml -------------------------------------------------------------------------------- /catalog-manager/helm/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog-manager/helm/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /catalog-manager/helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog-manager/helm/values.yaml -------------------------------------------------------------------------------- /catalog-manager/kopf-opt.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | KOPF_NAMESPACED=false 3 | -------------------------------------------------------------------------------- /catalog-manager/operator/babylon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog-manager/operator/babylon.py -------------------------------------------------------------------------------- /catalog-manager/operator/catalog_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog-manager/operator/catalog_item.py -------------------------------------------------------------------------------- /catalog-manager/operator/catalog_item_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog-manager/operator/catalog_item_service.py -------------------------------------------------------------------------------- /catalog-manager/operator/configure_kopf_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog-manager/operator/configure_kopf_logging.py -------------------------------------------------------------------------------- /catalog-manager/operator/infinite_relative_backoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog-manager/operator/infinite_relative_backoff.py -------------------------------------------------------------------------------- /catalog-manager/operator/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog-manager/operator/operator.py -------------------------------------------------------------------------------- /catalog-manager/operator/rating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog-manager/operator/rating.py -------------------------------------------------------------------------------- /catalog-manager/operator/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog-manager/operator/utils.py -------------------------------------------------------------------------------- /catalog-manager/requirements.txt: -------------------------------------------------------------------------------- 1 | aiohttp==3.12.14 2 | psycopg2==2.9.5 3 | retrying==1.3.4 -------------------------------------------------------------------------------- /catalog/Development.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/Development.adoc -------------------------------------------------------------------------------- /catalog/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/README.adoc -------------------------------------------------------------------------------- /catalog/api/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/api/Containerfile -------------------------------------------------------------------------------- /catalog/api/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/api/README.adoc -------------------------------------------------------------------------------- /catalog/api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/api/app.py -------------------------------------------------------------------------------- /catalog/api/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/api/config.py -------------------------------------------------------------------------------- /catalog/api/hotfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/api/hotfix.py -------------------------------------------------------------------------------- /catalog/api/randomstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/api/randomstring.py -------------------------------------------------------------------------------- /catalog/api/requirements.txt: -------------------------------------------------------------------------------- 1 | aiohttp==3.12.14 2 | kubernetes_asyncio==29.0.0 3 | redis==5.0.4 4 | -------------------------------------------------------------------------------- /catalog/babylon-catalog.route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/babylon-catalog.route.yaml -------------------------------------------------------------------------------- /catalog/build-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/build-template.yaml -------------------------------------------------------------------------------- /catalog/helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/Chart.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /catalog/helm/templates/access/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/access/clusterrole.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/api/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/api/clusterrole.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/api/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/api/clusterrolebinding.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/api/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/api/deployment.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/api/salesforce-api-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/api/salesforce-api-secret.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/api/sandbox-api-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/api/sandbox-api-secret.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/api/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/api/service.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/api/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/api/serviceaccount.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/api/system-status-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/api/system-status-configmap.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/namespace.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/oauth-proxy/clientSecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/oauth-proxy/clientSecret.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/oauth-proxy/cookieSecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/oauth-proxy/cookieSecret.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/oauth-proxy/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/oauth-proxy/deployment.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/oauth-proxy/oauthclient.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/oauth-proxy/oauthclient.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/oauth-proxy/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/oauth-proxy/route.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/oauth-proxy/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/oauth-proxy/service.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/oauth-proxy/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/oauth-proxy/serviceaccount.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/redis/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/redis/deployment.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/redis/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/redis/secret.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/redis/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/redis/service.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/status/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/status/deployment.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/status/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/status/service.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/ui/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/ui/deployment.yaml -------------------------------------------------------------------------------- /catalog/helm/templates/ui/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/templates/ui/service.yaml -------------------------------------------------------------------------------- /catalog/helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/helm/values.yaml -------------------------------------------------------------------------------- /catalog/jmeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/jmeter/README.md -------------------------------------------------------------------------------- /catalog/jmeter/REDHAT_TEST_10-08-2021.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/jmeter/REDHAT_TEST_10-08-2021.jmx -------------------------------------------------------------------------------- /catalog/jmeter/example.csv: -------------------------------------------------------------------------------- 1 | username,password 2 | -------------------------------------------------------------------------------- /catalog/status/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/status/Dockerfile -------------------------------------------------------------------------------- /catalog/status/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/status/assets/favicon.ico -------------------------------------------------------------------------------- /catalog/status/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/status/index.html -------------------------------------------------------------------------------- /catalog/status/interfaces/rhdp-partners.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/status/interfaces/rhdp-partners.json -------------------------------------------------------------------------------- /catalog/status/interfaces/rhpds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/status/interfaces/rhpds.json -------------------------------------------------------------------------------- /catalog/status/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/status/main.css -------------------------------------------------------------------------------- /catalog/status/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/status/main.js -------------------------------------------------------------------------------- /catalog/status/nginx-default-cfg/redirect.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/status/nginx-default-cfg/redirect.conf -------------------------------------------------------------------------------- /catalog/ui/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/.dockerignore -------------------------------------------------------------------------------- /catalog/ui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/.editorconfig -------------------------------------------------------------------------------- /catalog/ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/.gitignore -------------------------------------------------------------------------------- /catalog/ui/.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | node_modules 3 | coverage 4 | -------------------------------------------------------------------------------- /catalog/ui/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/.prettierrc -------------------------------------------------------------------------------- /catalog/ui/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/Dockerfile -------------------------------------------------------------------------------- /catalog/ui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/LICENSE -------------------------------------------------------------------------------- /catalog/ui/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/README.adoc -------------------------------------------------------------------------------- /catalog/ui/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /catalog/ui/__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /catalog/ui/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/babel.config.js -------------------------------------------------------------------------------- /catalog/ui/dr-surge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/dr-surge.js -------------------------------------------------------------------------------- /catalog/ui/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/eslint.config.mjs -------------------------------------------------------------------------------- /catalog/ui/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/jest.config.js -------------------------------------------------------------------------------- /catalog/ui/nginx-default-cfg/redirect.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/nginx-default-cfg/redirect.conf -------------------------------------------------------------------------------- /catalog/ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/package-lock.json -------------------------------------------------------------------------------- /catalog/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/package.json -------------------------------------------------------------------------------- /catalog/ui/src/app/Activity/Activity.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Activity/Activity.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Activity/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Activity/index.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/AnarchyActionInstance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/AnarchyActionInstance.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/AnarchyActionSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/AnarchyActionSelect.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/AnarchyActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/AnarchyActions.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/AnarchyActionsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/AnarchyActionsTable.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/AnarchyGovernorInstance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/AnarchyGovernorInstance.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/AnarchyGovernors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/AnarchyGovernors.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/AnarchyRunInstance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/AnarchyRunInstance.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/AnarchyRunnerStateSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/AnarchyRunnerStateSelect.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/AnarchyRuns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/AnarchyRuns.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/AnarchyRunsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/AnarchyRunsTable.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/AnarchySubjectInstance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/AnarchySubjectInstance.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/AnarchySubjectStateSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/AnarchySubjectStateSelect.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/AnarchySubjects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/AnarchySubjects.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/AnarchySubjectsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/AnarchySubjectsTable.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/CatalogIncidentsAlertList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/CatalogIncidentsAlertList.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/CatalogItemAdmin.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/CatalogItemAdmin.spec.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/CatalogItemAdmin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/CatalogItemAdmin.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/CreateResourcePoolFromResourceHandleModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/CreateResourcePoolFromResourceHandleModal.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/IncidentsAlertList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/IncidentsAlertList.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/IncidentsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/IncidentsPage.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/MultiWorkshops.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/MultiWorkshops.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/RatingsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/RatingsList.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/RatingsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/RatingsPage.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/ResourceClaims.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/ResourceClaims.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/ResourceHandleInstance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/ResourceHandleInstance.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/ResourceHandles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/ResourceHandles.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/ResourcePoolInstance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/ResourcePoolInstance.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/ResourcePoolMinAvailableInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/ResourcePoolMinAvailableInput.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/ResourcePoolStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/ResourcePoolStats.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/ResourcePools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/ResourcePools.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/ResourceProviderInstance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/ResourceProviderInstance.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/ResourceProviders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/ResourceProviders.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/SystemStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/SystemStatus.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/Workshops.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/Workshops.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/WorkshopsScheduled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/WorkshopsScheduled.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/admin.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/catalog-item-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/catalog-item-admin.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Admin/usePoolStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Admin/usePoolStatus.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/AppLayout/AppLayout.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/AppLayout/AppLayout.spec.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/AppLayout/AppLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/AppLayout/AppLayout.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/AppLayout/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/AppLayout/Navigation.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/AppLayout/NotificationDrawerContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/AppLayout/NotificationDrawerContext.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/Catalog.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/Catalog.spec.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/Catalog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/Catalog.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/CatalogCategorySelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/CatalogCategorySelector.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/CatalogContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/CatalogContent.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/CatalogGridList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/CatalogGridList.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/CatalogInterfaceDescription.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/CatalogInterfaceDescription.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/CatalogItemCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/CatalogItemCard.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/CatalogItemDetails.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/CatalogItemDetails.spec.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/CatalogItemDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/CatalogItemDetails.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/CatalogItemForm.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/CatalogItemForm.spec.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/CatalogItemForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/CatalogItemForm.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/CatalogItemFormAutoStopDestroyModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/CatalogItemFormAutoStopDestroyModal.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/CatalogItemFormReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/CatalogItemFormReducer.ts -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/CatalogItemHealthDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/CatalogItemHealthDisplay.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/CatalogItemIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/CatalogItemIcon.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/CatalogItemListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/CatalogItemListItem.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/CatalogLabelSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/CatalogLabelSelector.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/CatalogNamespaceSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/CatalogNamespaceSelect.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/CatalogRedirections.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/CatalogRedirections.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/catalog-category-selector.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/catalog-category-selector.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/catalog-item-card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/catalog-item-card.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/catalog-item-details.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/catalog-item-details.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/catalog-item-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/catalog-item-form.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/catalog-item-list-item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/catalog-item-list-item.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/catalog-item-request.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/catalog-item-request.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/catalog-item-workshop-form.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/catalog-label-selector.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/catalog-label-selector.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/catalog-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/catalog-utils.ts -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/catalog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/catalog.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Catalog/icons/openshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Catalog/icons/openshift.png -------------------------------------------------------------------------------- /catalog/ui/src/app/Dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Dashboard/index.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Header/Header.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Header/PublicHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Header/PublicHeader.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Header/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Header/header.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Modal/Modal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Modal/Modal.spec.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Modal/Modal.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Modal/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Modal/modal.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Modal/useModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Modal/useModal.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/MultiWorkshops/CatalogItemSelectorModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/MultiWorkshops/CatalogItemSelectorModal.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/MultiWorkshops/ExternalWorkshopModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/MultiWorkshops/ExternalWorkshopModal.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/MultiWorkshops/LabIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/MultiWorkshops/LabIcon.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/MultiWorkshops/MultiWorkshopCreate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/MultiWorkshops/MultiWorkshopCreate.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/MultiWorkshops/MultiWorkshopDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/MultiWorkshops/MultiWorkshopDetail.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/MultiWorkshops/MultiWorkshopLanding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/MultiWorkshops/MultiWorkshopLanding.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/MultiWorkshops/MultiWorkshopList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/MultiWorkshops/MultiWorkshopList.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/MultiWorkshops/hero-img.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/MultiWorkshops/hero-img.jpeg -------------------------------------------------------------------------------- /catalog/ui/src/app/MultiWorkshops/multiworkshop-create.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/MultiWorkshops/multiworkshop-create.css -------------------------------------------------------------------------------- /catalog/ui/src/app/MultiWorkshops/multiworkshop-detail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/MultiWorkshops/multiworkshop-detail.css -------------------------------------------------------------------------------- /catalog/ui/src/app/MultiWorkshops/multiworkshop-landing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/MultiWorkshops/multiworkshop-landing.css -------------------------------------------------------------------------------- /catalog/ui/src/app/MultiWorkshops/multiworkshop-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/MultiWorkshops/multiworkshop-list.css -------------------------------------------------------------------------------- /catalog/ui/src/app/MultiWorkshops/purposeOptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/MultiWorkshops/purposeOptions.json -------------------------------------------------------------------------------- /catalog/ui/src/app/NotFound/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/NotFound/NotFound.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/InfoTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/InfoTab.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/ServiceActions.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/ServiceActions.spec.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/ServiceActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/ServiceActions.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/ServiceItemStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/ServiceItemStatus.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/ServiceOpenStackConsole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/ServiceOpenStackConsole.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/ServiceStatus.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/ServiceStatus.spec.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/ServiceStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/ServiceStatus.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/ServiceUsers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/ServiceUsers.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/Services.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/Services.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/ServicesAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/ServicesAction.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/ServicesActionRating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/ServicesActionRating.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/ServicesCreateWorkshop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/ServicesCreateWorkshop.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/ServicesItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/ServicesItem.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/ServicesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/ServicesList.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/ServicesScheduleAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/ServicesScheduleAction.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/renderResourceClaimRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/renderResourceClaimRow.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/renderWorkshopRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/renderWorkshopRow.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/service-item-status.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/service-item-status.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/service-status.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/service-status.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/service-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/service-utils.ts -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/services-delete-modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/services-delete-modal.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/services-item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/services-item.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/services-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/services-list.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Services/services-schedule-action-modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Services/services-schedule-action-modal.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Support/SupportPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Support/SupportPage.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Support/support-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Support/support-page.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshop/Workshop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshop/Workshop.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshop/WorkshopContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshop/WorkshopContent.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshop/WorkshopHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshop/WorkshopHeader.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshop/WorkshopLogin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshop/WorkshopLogin.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshop/workshop-content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshop/workshop-content.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshop/workshop-login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshop/workshop-login.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshop/workshop-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshop/workshop-utils.ts -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshop/workshop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshop/workshop.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshop/workshopApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshop/workshopApi.ts -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshops/WorkshopActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshops/WorkshopActions.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshops/WorkshopScheduleAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshops/WorkshopScheduleAction.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshops/WorkshopStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshops/WorkshopStatus.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshops/WorkshopsItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshops/WorkshopsItem.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshops/WorkshopsItemDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshops/WorkshopsItemDetails.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshops/WorkshopsItemProvisioning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshops/WorkshopsItemProvisioning.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshops/WorkshopsItemProvisioningItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshops/WorkshopsItemProvisioningItem.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshops/WorkshopsItemServices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshops/WorkshopsItemServices.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshops/WorkshopsItemUserAssignments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshops/WorkshopsItemUserAssignments.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshops/workshops-item-details.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshops/workshops-item-details.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshops/workshops-item-services.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshops/workshops-item-services.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshops/workshops-item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshops/workshops-item.css -------------------------------------------------------------------------------- /catalog/ui/src/app/Workshops/workshops-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/Workshops/workshops-utils.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/__mocks__/anarchySubject--start-failed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/__mocks__/anarchySubject--start-failed.json -------------------------------------------------------------------------------- /catalog/ui/src/app/__mocks__/anarchySubject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/__mocks__/anarchySubject.json -------------------------------------------------------------------------------- /catalog/ui/src/app/__mocks__/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/__mocks__/api.ts -------------------------------------------------------------------------------- /catalog/ui/src/app/__mocks__/catalogItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/__mocks__/catalogItem.json -------------------------------------------------------------------------------- /catalog/ui/src/app/__mocks__/catalogItemIncident.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/__mocks__/catalogItemIncident.json -------------------------------------------------------------------------------- /catalog/ui/src/app/__mocks__/catalogItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/__mocks__/catalogItems.json -------------------------------------------------------------------------------- /catalog/ui/src/app/__mocks__/resourceClaim--provision-fail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/__mocks__/resourceClaim--provision-fail.json -------------------------------------------------------------------------------- /catalog/ui/src/app/__mocks__/resourceClaim--stopped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/__mocks__/resourceClaim--stopped.json -------------------------------------------------------------------------------- /catalog/ui/src/app/__mocks__/resourceClaim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/__mocks__/resourceClaim.json -------------------------------------------------------------------------------- /catalog/ui/src/app/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/api.ts -------------------------------------------------------------------------------- /catalog/ui/src/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/app.css -------------------------------------------------------------------------------- /catalog/ui/src/app/app.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/app.spec.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/bgimages/Patternfly-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/bgimages/Patternfly-Logo.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/bgimages/RHPDS-Logo-Beta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/bgimages/RHPDS-Logo-Beta.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/bgimages/RHPDS-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/bgimages/RHPDS-Logo.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/bgimages/RedHat-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/bgimages/RedHat-Logo.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/bgimages/Summit-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/bgimages/Summit-Logo.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/bgimages/external-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/bgimages/external-link.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/bgimages/hero-img.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/bgimages/hero-img.jpeg -------------------------------------------------------------------------------- /catalog/ui/src/app/bgimages/octicons-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/bgimages/octicons-16.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/bgimages/openshift-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/bgimages/openshift-icon.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/ActionDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/ActionDropdown.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/ActivityPurposeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/ActivityPurposeSelector.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/AdocWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/AdocWrapper.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/AnsibleRunLog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/AnsibleRunLog.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/AutoStopDestroy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/AutoStopDestroy.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/BetaBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/BetaBadge.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/BulkUserAssignmentModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/BulkUserAssignmentModal.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/ButtonCircleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/ButtonCircleIcon.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/ConditionalWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/ConditionalWrapper.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/CopyToClipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/CopyToClipboard.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/CurrencyAmount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/CurrencyAmount.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/DateTimePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/DateTimePicker.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/DynamicFormInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/DynamicFormInput.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/EditableText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/EditableText.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/AutoLinkPlugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/AutoLinkPlugin.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/Editor.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/EditorViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/EditorViewer.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/Theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/Theme.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/ToolbarPlugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/ToolbarPlugin.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/editor.css -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/emoji/1F600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/emoji/1F600.png -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/emoji/1F641.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/emoji/1F641.png -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/emoji/1F642.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/emoji/1F642.png -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/emoji/2764.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/emoji/2764.png -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/emoji/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/emoji/LICENSE.md -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/LICENSE.md -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/arrow-clockwise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/arrow-clockwise.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/chat-square-quote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/chat-square-quote.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/chevron-down.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/code.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/journal-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/journal-code.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/journal-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/journal-text.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/justify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/justify.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/link.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/list-ol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/list-ol.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/list-ul.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/list-ul.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/pencil-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/pencil-fill.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/text-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/text-center.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/text-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/text-left.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/text-paragraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/text-paragraph.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/text-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/text-right.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/type-bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/type-bold.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/type-h1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/type-h1.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/type-h2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/type-h2.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/type-h3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/type-h3.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/type-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/type-italic.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Editor/images/icons/type-underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Editor/images/icons/type-underline.svg -------------------------------------------------------------------------------- /catalog/ui/src/app/components/ErrorBoundaryPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/ErrorBoundaryPage.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Footer.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Hero.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/ImpersonateUserModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/ImpersonateUserModal.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/IncidentsBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/IncidentsBanner.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/IncidentsNotificationDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/IncidentsNotificationDrawer.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/KeywordSearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/KeywordSearchInput.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/LabInterfaceLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/LabInterfaceLink.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/Label.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/LoadingIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/LoadingIcon.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/LoadingSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/LoadingSection.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/LocalTimestamp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/LocalTimestamp.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/NotFound.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/OpenshiftConsoleLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/OpenshiftConsoleLink.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/PatientNumberInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/PatientNumberInput.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/PilotBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/PilotBadge.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/ProjectSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/ProjectSelector.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/RedHatLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/RedHatLogo.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/RefreshButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/RefreshButton.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/ResourceClaimDeleteModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/ResourceClaimDeleteModal.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/ResourceClaimStartModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/ResourceClaimStartModal.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/ResourceClaimStopModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/ResourceClaimStopModal.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/SalesforceItemsEditModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/SalesforceItemsEditModal.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/SalesforceItemsField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/SalesforceItemsField.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/SalesforceItemsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/SalesforceItemsList.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/SearchInputString.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/SearchInputString.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/SearchSalesforceIdModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/SearchSalesforceIdModal.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/SelectableTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/SelectableTable.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/SelectableTableWithPagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/SelectableTableWithPagination.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/ShareLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/ShareLink.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/StarRating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/StarRating.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/StatusPageIcons/DegradedPerformance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/StatusPageIcons/DegradedPerformance.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/StatusPageIcons/MajorOutage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/StatusPageIcons/MajorOutage.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/StatusPageIcons/Operational.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/StatusPageIcons/Operational.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/StatusPageIcons/PartialOutage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/StatusPageIcons/PartialOutage.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/StatusPageIcons/UnderMaintenance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/StatusPageIcons/UnderMaintenance.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/StatusPageIcons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/StatusPageIcons/index.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/TermsOfService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/TermsOfService.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/TimeInterval.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/TimeInterval.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/UnexpectedError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/UnexpectedError.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/UptimeDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/UptimeDisplay.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/UserInterfaceLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/UserInterfaceLogo.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/WorkshopActionModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/WorkshopActionModal.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/components/action-dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/action-dropdown.css -------------------------------------------------------------------------------- /catalog/ui/src/app/components/adoc-wrapper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/adoc-wrapper.css -------------------------------------------------------------------------------- /catalog/ui/src/app/components/ansible-run-log.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/ansible-run-log.css -------------------------------------------------------------------------------- /catalog/ui/src/app/components/bulk-user-assignment-modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/bulk-user-assignment-modal.css -------------------------------------------------------------------------------- /catalog/ui/src/app/components/button-circle-icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/button-circle-icon.css -------------------------------------------------------------------------------- /catalog/ui/src/app/components/date-time-picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/date-time-picker.css -------------------------------------------------------------------------------- /catalog/ui/src/app/components/editable-text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/editable-text.css -------------------------------------------------------------------------------- /catalog/ui/src/app/components/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/footer.css -------------------------------------------------------------------------------- /catalog/ui/src/app/components/impersonate-user-modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/impersonate-user-modal.css -------------------------------------------------------------------------------- /catalog/ui/src/app/components/incidents-banner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/incidents-banner.css -------------------------------------------------------------------------------- /catalog/ui/src/app/components/loading-icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/loading-icon.css -------------------------------------------------------------------------------- /catalog/ui/src/app/components/openshift-console-link.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/openshift-console-link.css -------------------------------------------------------------------------------- /catalog/ui/src/app/components/project-selector.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/components/project-selector.css -------------------------------------------------------------------------------- /catalog/ui/src/app/custom-media.css: -------------------------------------------------------------------------------- 1 | @custom-media --small-viewport (max-width: 768px); 2 | -------------------------------------------------------------------------------- /catalog/ui/src/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/index.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/reducers.ts -------------------------------------------------------------------------------- /catalog/ui/src/app/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/routes.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/store/index.ts -------------------------------------------------------------------------------- /catalog/ui/src/app/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/types.ts -------------------------------------------------------------------------------- /catalog/ui/src/app/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/util.ts -------------------------------------------------------------------------------- /catalog/ui/src/app/utils/react-window-scroller.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/utils/react-window-scroller.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/utils/test-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/utils/test-utils.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/utils/useDebounce.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/utils/useDebounce.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/utils/useDebounceState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/utils/useDebounceState.ts -------------------------------------------------------------------------------- /catalog/ui/src/app/utils/useDocumentTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/utils/useDocumentTitle.ts -------------------------------------------------------------------------------- /catalog/ui/src/app/utils/useHelpLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/utils/useHelpLink.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/utils/useImpersonateUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/utils/useImpersonateUser.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/utils/useInterfaceConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/utils/useInterfaceConfig.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/utils/useMatchMutate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/utils/useMatchMutate.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/utils/useRect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/utils/useRect.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/utils/useScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/utils/useScript.ts -------------------------------------------------------------------------------- /catalog/ui/src/app/utils/useSession.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/utils/useSession.tsx -------------------------------------------------------------------------------- /catalog/ui/src/app/utils/useSystemStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/app/utils/useSystemStatus.tsx -------------------------------------------------------------------------------- /catalog/ui/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/favicon.ico -------------------------------------------------------------------------------- /catalog/ui/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/index.html -------------------------------------------------------------------------------- /catalog/ui/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/index.tsx -------------------------------------------------------------------------------- /catalog/ui/src/public/incidents_technical_support.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/public/incidents_technical_support.csv -------------------------------------------------------------------------------- /catalog/ui/src/public/interfaces/rhdp-partners.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/public/interfaces/rhdp-partners.json -------------------------------------------------------------------------------- /catalog/ui/src/public/interfaces/rhpds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/public/interfaces/rhpds.json -------------------------------------------------------------------------------- /catalog/ui/src/public/monitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/public/monitor.js -------------------------------------------------------------------------------- /catalog/ui/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/src/typings.d.ts -------------------------------------------------------------------------------- /catalog/ui/stylePaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/stylePaths.js -------------------------------------------------------------------------------- /catalog/ui/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/test-setup.ts -------------------------------------------------------------------------------- /catalog/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/tsconfig.json -------------------------------------------------------------------------------- /catalog/ui/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/webpack.common.js -------------------------------------------------------------------------------- /catalog/ui/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/webpack.dev.js -------------------------------------------------------------------------------- /catalog/ui/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/ui/webpack.prod.js -------------------------------------------------------------------------------- /catalog/util/make-catalog-item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/catalog/util/make-catalog-item.py -------------------------------------------------------------------------------- /cost-tracker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/cost-tracker/.gitignore -------------------------------------------------------------------------------- /cost-tracker/Development.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/cost-tracker/Development.adoc -------------------------------------------------------------------------------- /cost-tracker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/cost-tracker/Dockerfile -------------------------------------------------------------------------------- /cost-tracker/build-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/cost-tracker/build-template.yaml -------------------------------------------------------------------------------- /cost-tracker/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/cost-tracker/devfile.yaml -------------------------------------------------------------------------------- /cost-tracker/helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/cost-tracker/helm/Chart.yaml -------------------------------------------------------------------------------- /cost-tracker/helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/cost-tracker/helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /cost-tracker/helm/templates/aws-sandbox-manager-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/cost-tracker/helm/templates/aws-sandbox-manager-secret.yaml -------------------------------------------------------------------------------- /cost-tracker/helm/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/cost-tracker/helm/templates/deployment.yaml -------------------------------------------------------------------------------- /cost-tracker/helm/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/cost-tracker/helm/templates/namespace.yaml -------------------------------------------------------------------------------- /cost-tracker/helm/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/cost-tracker/helm/templates/rbac.yaml -------------------------------------------------------------------------------- /cost-tracker/helm/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/cost-tracker/helm/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /cost-tracker/helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/cost-tracker/helm/values.yaml -------------------------------------------------------------------------------- /cost-tracker/kopf-opt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/cost-tracker/kopf-opt.sh -------------------------------------------------------------------------------- /cost-tracker/operator/anarchy_subject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/cost-tracker/operator/anarchy_subject.py -------------------------------------------------------------------------------- /cost-tracker/operator/aws_sandbox_cost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/cost-tracker/operator/aws_sandbox_cost.py -------------------------------------------------------------------------------- /cost-tracker/operator/cost_tracker_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/cost-tracker/operator/cost_tracker_state.py -------------------------------------------------------------------------------- /cost-tracker/operator/infinite_relative_backoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/cost-tracker/operator/infinite_relative_backoff.py -------------------------------------------------------------------------------- /cost-tracker/operator/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/cost-tracker/operator/operator.py -------------------------------------------------------------------------------- /cost-tracker/operator/resource_claim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/cost-tracker/operator/resource_claim.py -------------------------------------------------------------------------------- /cost-tracker/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/cost-tracker/requirements.txt -------------------------------------------------------------------------------- /docs/AgnosticV_Operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/docs/AgnosticV_Operator.md -------------------------------------------------------------------------------- /docs/Architecture_Poolboy.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/docs/Architecture_Poolboy.adoc -------------------------------------------------------------------------------- /docs/Configuring_OpenShift.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/docs/Configuring_OpenShift.adoc -------------------------------------------------------------------------------- /docs/Deploying_Babylon.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/docs/Deploying_Babylon.adoc -------------------------------------------------------------------------------- /docs/Deploying_OpenShift.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/docs/Deploying_OpenShift.adoc -------------------------------------------------------------------------------- /docs/Deploying_dark_tower.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/docs/Deploying_dark_tower.adoc -------------------------------------------------------------------------------- /docs/Metrics.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/docs/Metrics.adoc -------------------------------------------------------------------------------- /docs/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/docs/README.adoc -------------------------------------------------------------------------------- /docs/images/BabylonArchitecture-Poolboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/docs/images/BabylonArchitecture-Poolboy.png -------------------------------------------------------------------------------- /docs/images/babylon-high-level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/docs/images/babylon-high-level.png -------------------------------------------------------------------------------- /helm/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/.helmignore -------------------------------------------------------------------------------- /helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/Chart.yaml -------------------------------------------------------------------------------- /helm/crds/agnosticvcomponents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/crds/agnosticvcomponents.yaml -------------------------------------------------------------------------------- /helm/crds/agnosticvrepos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/crds/agnosticvrepos.yaml -------------------------------------------------------------------------------- /helm/crds/catalogitems.babylon.gpte.redhat.com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/crds/catalogitems.babylon.gpte.redhat.com.yaml -------------------------------------------------------------------------------- /helm/crds/multiworkshops.babylon.gpte.redhat.com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/crds/multiworkshops.babylon.gpte.redhat.com.yaml -------------------------------------------------------------------------------- /helm/crds/workshopprovisions.babylon.gpte.redhat.com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/crds/workshopprovisions.babylon.gpte.redhat.com.yaml -------------------------------------------------------------------------------- /helm/crds/workshops.babylon.gpte.redhat.com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/crds/workshops.babylon.gpte.redhat.com.yaml -------------------------------------------------------------------------------- /helm/crds/workshopuserassignments.babylon.gpte.redhat.com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/crds/workshopuserassignments.babylon.gpte.redhat.com.yaml -------------------------------------------------------------------------------- /helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/templates/admin/database-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/admin/database-secrets.yaml -------------------------------------------------------------------------------- /helm/templates/admin/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/admin/deployment.yaml -------------------------------------------------------------------------------- /helm/templates/admin/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/admin/namespace.yaml -------------------------------------------------------------------------------- /helm/templates/admin/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/admin/service.yaml -------------------------------------------------------------------------------- /helm/templates/admin/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/admin/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/templates/admin/servicenow-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/admin/servicenow-secret.yaml -------------------------------------------------------------------------------- /helm/templates/agnosticv/agnosticvrepos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/agnosticv/agnosticvrepos.yaml -------------------------------------------------------------------------------- /helm/templates/agnosticv/operator/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/agnosticv/operator/clusterrole.yaml -------------------------------------------------------------------------------- /helm/templates/agnosticv/operator/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/agnosticv/operator/clusterrolebinding.yaml -------------------------------------------------------------------------------- /helm/templates/agnosticv/operator/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/agnosticv/operator/deployment.yaml -------------------------------------------------------------------------------- /helm/templates/agnosticv/operator/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/agnosticv/operator/role.yaml -------------------------------------------------------------------------------- /helm/templates/agnosticv/operator/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/agnosticv/operator/rolebinding.yaml -------------------------------------------------------------------------------- /helm/templates/agnosticv/operator/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/agnosticv/operator/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/templates/agnosticv/operator/webhook-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/agnosticv/operator/webhook-route.yaml -------------------------------------------------------------------------------- /helm/templates/agnosticv/operator/webhook-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/agnosticv/operator/webhook-service.yaml -------------------------------------------------------------------------------- /helm/templates/anarchy/anarchy-runner-access.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/anarchy/anarchy-runner-access.yaml -------------------------------------------------------------------------------- /helm/templates/anarchy/clusterroles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/anarchy/clusterroles.yaml -------------------------------------------------------------------------------- /helm/templates/anarchy/communes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/anarchy/communes.yaml -------------------------------------------------------------------------------- /helm/templates/anarchy/namespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/anarchy/namespaces.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/api/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/api/clusterrole.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/api/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/api/clusterrolebinding.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/api/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/api/deployment.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/api/salesforce-api-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/api/salesforce-api-secret.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/api/sandbox-api-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/api/sandbox-api-secret.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/api/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/api/service.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/api/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/api/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/api/system-status-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/api/system-status-configmap.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/namespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/namespaces.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/oauth-proxy/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/oauth-proxy/certificate.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/oauth-proxy/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/oauth-proxy/deployment.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/oauth-proxy/oauthclientconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/oauth-proxy/oauthclientconfig.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/oauth-proxy/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/oauth-proxy/route.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/oauth-proxy/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/oauth-proxy/service.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/oauth-proxy/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/oauth-proxy/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/redis/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/redis/deployment.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/redis/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/redis/secret.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/redis/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/redis/service.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/status/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/status/deployment.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/status/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/status/service.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/ui/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/ui/deployment.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/interfaces/ui/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/interfaces/ui/service.yaml -------------------------------------------------------------------------------- /helm/templates/catalog/namespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/catalog/namespaces.yaml -------------------------------------------------------------------------------- /helm/templates/clusterroles/babylon-cluster-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/clusterroles/babylon-cluster-admin.yaml -------------------------------------------------------------------------------- /helm/templates/clusterroles/babylon-cluster-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/clusterroles/babylon-cluster-reader.yaml -------------------------------------------------------------------------------- /helm/templates/clusterroles/babylon-user-catalog-access.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/clusterroles/babylon-user-catalog-access.yaml -------------------------------------------------------------------------------- /helm/templates/clusterroles/babylon-user-service-access.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/clusterroles/babylon-user-service-access.yaml -------------------------------------------------------------------------------- /helm/templates/clusterroles/babylon-workshop-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/clusterroles/babylon-workshop-admin.yaml -------------------------------------------------------------------------------- /helm/templates/clusterroles/catalog-access.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/clusterroles/catalog-access.yaml -------------------------------------------------------------------------------- /helm/templates/config/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/config/namespace.yaml -------------------------------------------------------------------------------- /helm/templates/notifier/anarchy-access.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/notifier/anarchy-access.yaml -------------------------------------------------------------------------------- /helm/templates/notifier/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/notifier/clusterrole.yaml -------------------------------------------------------------------------------- /helm/templates/notifier/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/notifier/clusterrolebinding.yaml -------------------------------------------------------------------------------- /helm/templates/notifier/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/notifier/deployment.yaml -------------------------------------------------------------------------------- /helm/templates/notifier/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/notifier/namespace.yaml -------------------------------------------------------------------------------- /helm/templates/notifier/redis/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/notifier/redis/deployment.yaml -------------------------------------------------------------------------------- /helm/templates/notifier/redis/persistentvolumeclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/notifier/redis/persistentvolumeclaim.yaml -------------------------------------------------------------------------------- /helm/templates/notifier/redis/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/notifier/redis/secret.yaml -------------------------------------------------------------------------------- /helm/templates/notifier/redis/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/notifier/redis/service.yaml -------------------------------------------------------------------------------- /helm/templates/notifier/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/notifier/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/templates/notifier/smtp-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/notifier/smtp-secret.yaml -------------------------------------------------------------------------------- /helm/templates/ratings/database-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/ratings/database-secrets.yaml -------------------------------------------------------------------------------- /helm/templates/ratings/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/ratings/deployment.yaml -------------------------------------------------------------------------------- /helm/templates/ratings/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/ratings/namespace.yaml -------------------------------------------------------------------------------- /helm/templates/ratings/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/ratings/rbac.yaml -------------------------------------------------------------------------------- /helm/templates/ratings/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/ratings/service.yaml -------------------------------------------------------------------------------- /helm/templates/ratings/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/ratings/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/templates/resourceBroker/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/resourceBroker/clusterrole.yaml -------------------------------------------------------------------------------- /helm/templates/resourceBroker/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/resourceBroker/clusterrolebinding.yaml -------------------------------------------------------------------------------- /helm/templates/workshopManager/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/workshopManager/clusterrole.yaml -------------------------------------------------------------------------------- /helm/templates/workshopManager/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/workshopManager/clusterrolebinding.yaml -------------------------------------------------------------------------------- /helm/templates/workshopManager/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/workshopManager/deployment.yaml -------------------------------------------------------------------------------- /helm/templates/workshopManager/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/workshopManager/namespace.yaml -------------------------------------------------------------------------------- /helm/templates/workshopManager/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/templates/workshopManager/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/helm/values.yaml -------------------------------------------------------------------------------- /lab-ui-manager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/lab-ui-manager/.gitignore -------------------------------------------------------------------------------- /lab-ui-manager/Development.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/lab-ui-manager/Development.adoc -------------------------------------------------------------------------------- /lab-ui-manager/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/lab-ui-manager/Dockerfile -------------------------------------------------------------------------------- /lab-ui-manager/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/lab-ui-manager/README.adoc -------------------------------------------------------------------------------- /lab-ui-manager/build-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/lab-ui-manager/build-template.yaml -------------------------------------------------------------------------------- /lab-ui-manager/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/lab-ui-manager/devfile.yaml -------------------------------------------------------------------------------- /lab-ui-manager/helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/lab-ui-manager/helm/Chart.yaml -------------------------------------------------------------------------------- /lab-ui-manager/helm/crds/bookbagbuilds.babylon.gpte.redhat.com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/lab-ui-manager/helm/crds/bookbagbuilds.babylon.gpte.redhat.com.yaml -------------------------------------------------------------------------------- /lab-ui-manager/helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/lab-ui-manager/helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /lab-ui-manager/helm/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/lab-ui-manager/helm/templates/deployment.yaml -------------------------------------------------------------------------------- /lab-ui-manager/helm/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/lab-ui-manager/helm/templates/namespace.yaml -------------------------------------------------------------------------------- /lab-ui-manager/helm/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/lab-ui-manager/helm/templates/rbac.yaml -------------------------------------------------------------------------------- /lab-ui-manager/helm/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/lab-ui-manager/helm/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /lab-ui-manager/helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/lab-ui-manager/helm/values.yaml -------------------------------------------------------------------------------- /lab-ui-manager/kopf-opt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/lab-ui-manager/kopf-opt.sh -------------------------------------------------------------------------------- /lab-ui-manager/operator/infinite_relative_backoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/lab-ui-manager/operator/infinite_relative_backoff.py -------------------------------------------------------------------------------- /lab-ui-manager/operator/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/lab-ui-manager/operator/operator.py -------------------------------------------------------------------------------- /lab-ui-manager/requirements.txt: -------------------------------------------------------------------------------- 1 | pydantic==1.10.13 2 | -------------------------------------------------------------------------------- /lab-ui-manager/user-configmap.resourceclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/lab-ui-manager/user-configmap.resourceclaim.yaml -------------------------------------------------------------------------------- /lab-ui-manager/user-configmap.resourcehandle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/lab-ui-manager/user-configmap.resourcehandle.yaml -------------------------------------------------------------------------------- /lab-ui-manager/user-configmap.resourceprovider.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/lab-ui-manager/user-configmap.resourceprovider.yaml -------------------------------------------------------------------------------- /notifier/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/.gitignore -------------------------------------------------------------------------------- /notifier/.s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/.s2i/bin/assemble -------------------------------------------------------------------------------- /notifier/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/Containerfile -------------------------------------------------------------------------------- /notifier/Development.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/Development.adoc -------------------------------------------------------------------------------- /notifier/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/README.adoc -------------------------------------------------------------------------------- /notifier/build-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/build-template.yaml -------------------------------------------------------------------------------- /notifier/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/devfile.yaml -------------------------------------------------------------------------------- /notifier/helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/helm/Chart.yaml -------------------------------------------------------------------------------- /notifier/helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /notifier/helm/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/helm/templates/deployment.yaml -------------------------------------------------------------------------------- /notifier/helm/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/helm/templates/namespace.yaml -------------------------------------------------------------------------------- /notifier/helm/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/helm/templates/rbac.yaml -------------------------------------------------------------------------------- /notifier/helm/templates/redis/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/helm/templates/redis/deployment.yaml -------------------------------------------------------------------------------- /notifier/helm/templates/redis/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/helm/templates/redis/pvc.yaml -------------------------------------------------------------------------------- /notifier/helm/templates/redis/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/helm/templates/redis/secret.yaml -------------------------------------------------------------------------------- /notifier/helm/templates/redis/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/helm/templates/redis/service.yaml -------------------------------------------------------------------------------- /notifier/helm/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/helm/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /notifier/helm/templates/smtp-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/helm/templates/smtp-secret.yaml -------------------------------------------------------------------------------- /notifier/helm/templates/tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/helm/templates/tls-secret.yaml -------------------------------------------------------------------------------- /notifier/helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/helm/values.yaml -------------------------------------------------------------------------------- /notifier/kopf-opt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/kopf-opt.sh -------------------------------------------------------------------------------- /notifier/operator/babylon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/babylon.py -------------------------------------------------------------------------------- /notifier/operator/catalog_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/catalog_item.py -------------------------------------------------------------------------------- /notifier/operator/catalog_namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/catalog_namespace.py -------------------------------------------------------------------------------- /notifier/operator/configure_kopf_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/configure_kopf_logging.py -------------------------------------------------------------------------------- /notifier/operator/infinite_relative_backoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/infinite_relative_backoff.py -------------------------------------------------------------------------------- /notifier/operator/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/operator.py -------------------------------------------------------------------------------- /notifier/operator/resource_claim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/resource_claim.py -------------------------------------------------------------------------------- /notifier/operator/service_namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/service_namespace.py -------------------------------------------------------------------------------- /notifier/operator/templates/base.mjml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/templates/base.mjml.j2 -------------------------------------------------------------------------------- /notifier/operator/templates/provision-failed.mjml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/templates/provision-failed.mjml.j2 -------------------------------------------------------------------------------- /notifier/operator/templates/provision-started.mjml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/templates/provision-started.mjml.j2 -------------------------------------------------------------------------------- /notifier/operator/templates/retirement-scheduled.mjml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/templates/retirement-scheduled.mjml.j2 -------------------------------------------------------------------------------- /notifier/operator/templates/service-deleted.mjml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/templates/service-deleted.mjml.j2 -------------------------------------------------------------------------------- /notifier/operator/templates/service-ready.mjml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/templates/service-ready.mjml.j2 -------------------------------------------------------------------------------- /notifier/operator/templates/start-complete.mjml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/templates/start-complete.mjml.j2 -------------------------------------------------------------------------------- /notifier/operator/templates/start-failed.mjml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/templates/start-failed.mjml.j2 -------------------------------------------------------------------------------- /notifier/operator/templates/stop-complete.mjml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/templates/stop-complete.mjml.j2 -------------------------------------------------------------------------------- /notifier/operator/templates/stop-failed.mjml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/templates/stop-failed.mjml.j2 -------------------------------------------------------------------------------- /notifier/operator/templates/stop-scheduled.mjml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/templates/stop-scheduled.mjml.j2 -------------------------------------------------------------------------------- /notifier/operator/templates/workshop-deleted.mjml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/templates/workshop-deleted.mjml.j2 -------------------------------------------------------------------------------- /notifier/operator/templates/workshop-provision-started.mjml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/templates/workshop-provision-started.mjml.j2 -------------------------------------------------------------------------------- /notifier/operator/templates/workshop-ready.mjml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/templates/workshop-ready.mjml.j2 -------------------------------------------------------------------------------- /notifier/operator/templates/workshop-retirement-scheduled.mjml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/templates/workshop-retirement-scheduled.mjml.j2 -------------------------------------------------------------------------------- /notifier/operator/templates/wrapper.mjml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/templates/wrapper.mjml.j2 -------------------------------------------------------------------------------- /notifier/operator/workshop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/operator/workshop.py -------------------------------------------------------------------------------- /notifier/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/notifier/requirements.txt -------------------------------------------------------------------------------- /openshift/config/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/openshift/config/README.adoc -------------------------------------------------------------------------------- /openshift/config/common/helm/babylon-admin: -------------------------------------------------------------------------------- 1 | ./../../../../admin/helm -------------------------------------------------------------------------------- /openshift/config/common/helm/babylon-agnosticv-operator: -------------------------------------------------------------------------------- 1 | ../../../../agnosticv-operator/helm -------------------------------------------------------------------------------- /openshift/config/common/helm/babylon-catalog: -------------------------------------------------------------------------------- 1 | ../../../../catalog/helm -------------------------------------------------------------------------------- /openshift/config/common/helm/babylon-catalog-manager: -------------------------------------------------------------------------------- 1 | ../../../../catalog-manager/helm -------------------------------------------------------------------------------- /openshift/config/common/helm/babylon-config/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/openshift/config/common/helm/babylon-config/Chart.yaml -------------------------------------------------------------------------------- /openshift/config/common/helm/babylon-config/templates/anarchy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/openshift/config/common/helm/babylon-config/templates/anarchy.yaml -------------------------------------------------------------------------------- /openshift/config/common/helm/babylon-config/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/openshift/config/common/helm/babylon-config/templates/rbac.yaml -------------------------------------------------------------------------------- /openshift/config/common/helm/babylon-config/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/openshift/config/common/helm/babylon-config/values.yaml -------------------------------------------------------------------------------- /openshift/config/common/helm/babylon-cost-tracker: -------------------------------------------------------------------------------- 1 | ../../../../cost-tracker/helm -------------------------------------------------------------------------------- /openshift/config/common/helm/babylon-lab-ui-manager: -------------------------------------------------------------------------------- 1 | ../../../../lab-ui-manager/helm -------------------------------------------------------------------------------- /openshift/config/common/helm/babylon-notifier: -------------------------------------------------------------------------------- 1 | ../../../../notifier/helm -------------------------------------------------------------------------------- /openshift/config/common/helm/babylon-ratings: -------------------------------------------------------------------------------- 1 | ../../../../ratings/helm -------------------------------------------------------------------------------- /openshift/config/common/helm/babylon-workshop-manager: -------------------------------------------------------------------------------- 1 | ../../../../workshop-manager/helm -------------------------------------------------------------------------------- /openshift/config/common/templates/anarchy-install.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/openshift/config/common/templates/anarchy-install.yaml.j2 -------------------------------------------------------------------------------- /openshift/config/common/vars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/openshift/config/common/vars.yaml -------------------------------------------------------------------------------- /openshift/config/env/dev/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/openshift/config/env/dev/main.yaml -------------------------------------------------------------------------------- /openshift/config/env/prod/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/openshift/config/env/prod/main.yaml -------------------------------------------------------------------------------- /openshift/config/env/test/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/openshift/config/env/test/main.yaml -------------------------------------------------------------------------------- /openshift/config/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/openshift/config/main.yaml -------------------------------------------------------------------------------- /openshift/config/setup-playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/openshift/config/setup-playbook.yaml -------------------------------------------------------------------------------- /playbooks/filter_plugins/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/playbooks/filter_plugins/parameters.py -------------------------------------------------------------------------------- /playbooks/service-destroy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/playbooks/service-destroy.yaml -------------------------------------------------------------------------------- /playbooks/service-lifecycle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/playbooks/service-lifecycle.yaml -------------------------------------------------------------------------------- /playbooks/service-provision.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/playbooks/service-provision.yaml -------------------------------------------------------------------------------- /playbooks/service-status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/playbooks/service-status.yaml -------------------------------------------------------------------------------- /playbooks/tasks/write-tower-rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/playbooks/tasks/write-tower-rc.yaml -------------------------------------------------------------------------------- /playbooks/unittest-filter-plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/playbooks/unittest-filter-plugins.py -------------------------------------------------------------------------------- /ratings/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .odo -------------------------------------------------------------------------------- /ratings/.s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/.s2i/bin/assemble -------------------------------------------------------------------------------- /ratings/.s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/.s2i/bin/run -------------------------------------------------------------------------------- /ratings/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/Dockerfile -------------------------------------------------------------------------------- /ratings/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/README.adoc -------------------------------------------------------------------------------- /ratings/api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/app.py -------------------------------------------------------------------------------- /ratings/api/babylon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/babylon.py -------------------------------------------------------------------------------- /ratings/api/json_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/json_formatter.py -------------------------------------------------------------------------------- /ratings/api/logconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/logconfig.yaml -------------------------------------------------------------------------------- /ratings/api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/models/__init__.py -------------------------------------------------------------------------------- /ratings/api/models/bookmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/models/bookmark.py -------------------------------------------------------------------------------- /ratings/api/models/catalog_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/models/catalog_item.py -------------------------------------------------------------------------------- /ratings/api/models/catalog_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/models/catalog_resource.py -------------------------------------------------------------------------------- /ratings/api/models/custom_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/models/custom_base.py -------------------------------------------------------------------------------- /ratings/api/models/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/models/database.py -------------------------------------------------------------------------------- /ratings/api/models/provision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/models/provision.py -------------------------------------------------------------------------------- /ratings/api/models/provision_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/models/provision_request.py -------------------------------------------------------------------------------- /ratings/api/models/purpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/models/purpose.py -------------------------------------------------------------------------------- /ratings/api/models/rating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/models/rating.py -------------------------------------------------------------------------------- /ratings/api/models/reporting_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/models/reporting_config.py -------------------------------------------------------------------------------- /ratings/api/models/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/models/requirements.txt -------------------------------------------------------------------------------- /ratings/api/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/models/user.py -------------------------------------------------------------------------------- /ratings/api/models/workshop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/models/workshop.py -------------------------------------------------------------------------------- /ratings/api/models/workshop_assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/models/workshop_assignment.py -------------------------------------------------------------------------------- /ratings/api/routers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/routers/__init__.py -------------------------------------------------------------------------------- /ratings/api/routers/bookmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/routers/bookmarks.py -------------------------------------------------------------------------------- /ratings/api/routers/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/routers/pagination.py -------------------------------------------------------------------------------- /ratings/api/routers/ratings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/routers/ratings.py -------------------------------------------------------------------------------- /ratings/api/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/schemas/__init__.py -------------------------------------------------------------------------------- /ratings/api/schemas/bookmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/schemas/bookmarks.py -------------------------------------------------------------------------------- /ratings/api/schemas/catalog_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/schemas/catalog_item.py -------------------------------------------------------------------------------- /ratings/api/schemas/provision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/schemas/provision.py -------------------------------------------------------------------------------- /ratings/api/schemas/purpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/schemas/purpose.py -------------------------------------------------------------------------------- /ratings/api/schemas/ratings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/schemas/ratings.py -------------------------------------------------------------------------------- /ratings/api/schemas/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/schemas/request.py -------------------------------------------------------------------------------- /ratings/api/schemas/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/schemas/user.py -------------------------------------------------------------------------------- /ratings/api/schemas/workshop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/api/schemas/workshop.py -------------------------------------------------------------------------------- /ratings/build-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/build-template.yaml -------------------------------------------------------------------------------- /ratings/helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/helm/Chart.yaml -------------------------------------------------------------------------------- /ratings/helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /ratings/helm/templates/database-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/helm/templates/database-secrets.yaml -------------------------------------------------------------------------------- /ratings/helm/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/helm/templates/deployment.yaml -------------------------------------------------------------------------------- /ratings/helm/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/helm/templates/namespace.yaml -------------------------------------------------------------------------------- /ratings/helm/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/helm/templates/rbac.yaml -------------------------------------------------------------------------------- /ratings/helm/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/helm/templates/service.yaml -------------------------------------------------------------------------------- /ratings/helm/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/helm/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /ratings/helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/helm/values.yaml -------------------------------------------------------------------------------- /ratings/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/ratings/requirements.txt -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- 1 | # Babylon Tests 2 | -------------------------------------------------------------------------------- /tools/babylon-status/governor_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/tools/babylon-status/governor_versions.py -------------------------------------------------------------------------------- /tools/babylon-status/pool_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/tools/babylon-status/pool_status.py -------------------------------------------------------------------------------- /tools/babylon-status/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/tools/babylon-status/status.py -------------------------------------------------------------------------------- /workshop-manager/.gitignore: -------------------------------------------------------------------------------- 1 | .odo 2 | typings -------------------------------------------------------------------------------- /workshop-manager/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/Containerfile -------------------------------------------------------------------------------- /workshop-manager/Development.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/Development.adoc -------------------------------------------------------------------------------- /workshop-manager/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/README.adoc -------------------------------------------------------------------------------- /workshop-manager/build-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/build-template.yaml -------------------------------------------------------------------------------- /workshop-manager/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/devfile.yaml -------------------------------------------------------------------------------- /workshop-manager/helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/helm/Chart.yaml -------------------------------------------------------------------------------- /workshop-manager/helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /workshop-manager/helm/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/helm/templates/deployment.yaml -------------------------------------------------------------------------------- /workshop-manager/helm/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/helm/templates/namespace.yaml -------------------------------------------------------------------------------- /workshop-manager/helm/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/helm/templates/rbac.yaml -------------------------------------------------------------------------------- /workshop-manager/helm/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/helm/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /workshop-manager/helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/helm/values.yaml -------------------------------------------------------------------------------- /workshop-manager/kopf-opt.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | KOPF_NAMESPACED=false 3 | -------------------------------------------------------------------------------- /workshop-manager/operator/babylon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/operator/babylon.py -------------------------------------------------------------------------------- /workshop-manager/operator/cachedkopfobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/operator/cachedkopfobject.py -------------------------------------------------------------------------------- /workshop-manager/operator/catalogitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/operator/catalogitem.py -------------------------------------------------------------------------------- /workshop-manager/operator/configure_kopf_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/operator/configure_kopf_logging.py -------------------------------------------------------------------------------- /workshop-manager/operator/infinite_relative_backoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/operator/infinite_relative_backoff.py -------------------------------------------------------------------------------- /workshop-manager/operator/k8sobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/operator/k8sobject.py -------------------------------------------------------------------------------- /workshop-manager/operator/kopfobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/operator/kopfobject.py -------------------------------------------------------------------------------- /workshop-manager/operator/labuserinterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/operator/labuserinterface.py -------------------------------------------------------------------------------- /workshop-manager/operator/multiworkshop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/operator/multiworkshop.py -------------------------------------------------------------------------------- /workshop-manager/operator/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/operator/operator.py -------------------------------------------------------------------------------- /workshop-manager/operator/resourceclaim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/operator/resourceclaim.py -------------------------------------------------------------------------------- /workshop-manager/operator/resourceprovider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/operator/resourceprovider.py -------------------------------------------------------------------------------- /workshop-manager/operator/userassignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/operator/userassignment.py -------------------------------------------------------------------------------- /workshop-manager/operator/workshop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/operator/workshop.py -------------------------------------------------------------------------------- /workshop-manager/operator/workshopprovision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/operator/workshopprovision.py -------------------------------------------------------------------------------- /workshop-manager/operator/workshopuserassignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-cop/babylon/HEAD/workshop-manager/operator/workshopuserassignment.py -------------------------------------------------------------------------------- /workshop-manager/requirements.txt: -------------------------------------------------------------------------------- 1 | pydantic==1.10.13 2 | kubernetes_asyncio==32.3.2 --------------------------------------------------------------------------------