├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── CONTRIBUTING.adoc ├── Dockerfile ├── LIFECYCLE.adoc ├── Makefile ├── PROJECT ├── README.adoc ├── config ├── console-samples │ ├── kustomization.yaml │ └── manifests │ │ ├── 1-jenkins-platform.yaml │ │ ├── 1-typical-pipeline-java.yaml │ │ ├── 2-tekton-platform.yaml │ │ ├── 2-typical-pipeline-nodejs.yaml │ │ └── 3-private-platform.yaml ├── crd │ ├── bases │ │ ├── redhatgov.io_ploigospipelines.yaml │ │ └── redhatgov.io_ploigosplatforms.yaml │ └── kustomization.yaml ├── default │ └── kustomization.yaml ├── manager │ ├── kustomization.yaml │ └── manager.yaml ├── manifests │ ├── bases │ │ └── ploigos-software-factory-operator.clusterserviceversion.yaml │ └── kustomization.yaml ├── rbac │ ├── cluster_role.yaml │ ├── cluster_role_binding.yaml │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── ploigospipeline_editor_role.yaml │ ├── ploigospipeline_viewer_role.yaml │ ├── ploigosplatform_editor_role.yaml │ ├── ploigosplatform_viewer_role.yaml │ └── service_account.yaml ├── samples │ ├── kustomization.yaml │ ├── redhatgov_v1alpha1_ploigospipeline_molecule.yaml │ └── redhatgov_v1alpha1_ploigosplatform_molecule.yaml ├── scorecard │ ├── bases │ │ └── config.yaml │ ├── kustomization.yaml │ └── patches │ │ ├── basic.config.yaml │ │ └── olm.config.yaml └── testing │ ├── cluster_scope │ └── kustomization.yaml │ ├── debug_logs_patch.yaml │ ├── manager_image.yaml │ └── pull_policy │ ├── Always.yaml │ ├── IfNotPresent.yaml │ └── Never.yaml ├── hack ├── ci-setup.sh ├── operate.conf ├── operate.sh └── requirements.txt ├── library ├── LICENSE ├── README.md └── k8s_json_patch.py ├── molecule ├── default │ ├── converge.yml │ ├── create.yml │ ├── destroy.yml │ ├── kustomize.yml │ ├── molecule.yml │ ├── prepare.yml │ ├── tasks │ │ └── ploigos_software_factory_test.yml │ └── verify.yml └── ocp-cluster │ ├── converge.yml │ ├── create.yml │ ├── destroy.yml │ └── molecule.yml ├── playbooks ├── ploigos.yml └── roles ├── requirements.yml ├── roles ├── ploigos-pipeline │ ├── defaults │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── templates │ │ ├── pipeline-run.yml.j2 │ │ └── ploigos-pipeline-values.yaml.j2 └── ploigos-platform │ ├── deployment │ ├── defaults │ │ └── main.yml │ ├── files │ │ ├── gitlab-system.yml │ │ ├── gitlab.yml │ │ └── gitlab_ci_role.yml │ ├── tasks │ │ ├── cleanup-ploigos-platform.yml │ │ ├── deploy_services.yml │ │ ├── generate_gpg_key.yml │ │ ├── gitlab_ci.yaml │ │ ├── install_operatorgroup.yml │ │ ├── main.yml │ │ └── service_access_init.yml │ └── templates │ │ ├── catalog-source.yml.j2 │ │ ├── container-builder.yml.j2 │ │ ├── custom-resources │ │ ├── argocd.yml.j2 │ │ ├── gitea.yml.j2 │ │ ├── gitlab.yml.j2 │ │ ├── nexus_artifacts.yml.j2 │ │ ├── nexus_containers.yml.j2 │ │ ├── quay.yml.j2 │ │ ├── rhsso.yml.j2 │ │ ├── selenium.yml.j2 │ │ └── sonarqube.yml.j2 │ │ ├── gitlab-resources │ │ ├── gitlab_ci.yml.j2 │ │ ├── gitlab_ci_binding.yml.j2 │ │ ├── gitlab_ci_configmap.yml.j2 │ │ ├── gitlab_ci_pvc.yml.j2 │ │ ├── gitlab_ci_serviceaccount.yml.j2 │ │ └── gitlab_route.yml.j2 │ │ ├── jenkins-rolebinding.yml.j2 │ │ ├── jenkins.yml.j2 │ │ ├── operator-group.yml.j2 │ │ ├── ploigos-platform-config-mvn.yml.j2 │ │ ├── ploigos-platform-config-npm.yml.j2 │ │ ├── ploigos-platform-config-secrets-mvn.yml.j2 │ │ ├── ploigos-platform-config-secrets-npm.yml.j2 │ │ ├── ploigos-service-account-secret.yml.j2 │ │ ├── subscriptions │ │ ├── argocd.yml.j2 │ │ ├── cert_manager.yml.j2 │ │ ├── gitea.yml.j2 │ │ ├── gitlab_ci.yml.j2 │ │ ├── nexus_artifacts.yml.j2 │ │ ├── nexus_containers.yml.j2 │ │ ├── quay.yml.j2 │ │ ├── rhsso.yml.j2 │ │ ├── selenium.yml.j2 │ │ ├── sonarqube.yml.j2 │ │ └── tekton.yml.j2 │ │ └── trustedcabundle.yml.j2 │ └── sso-integration │ ├── defaults │ └── main.yml │ ├── tasks │ ├── argocd.yml │ ├── gitea.yml │ ├── main.yml │ ├── quay.yml │ └── sonarqube.yml │ └── templates │ ├── argocd-rhsso-patch.yml.j2 │ ├── quay-config-rhsso-block.yml.j2 │ ├── realm.yml.j2 │ ├── rhsso-argocd-client.yml.j2 │ ├── rhsso-gitea-client.yml.j2 │ ├── rhsso-quay-client.yml.j2 │ └── rhsso-sonar4-client.yml.j2 ├── vars └── ploigos-platform │ └── common.yml └── watches.yaml /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | *.log 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/CONTRIBUTING.adoc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LIFECYCLE.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/LIFECYCLE.adoc -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/Makefile -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/PROJECT -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/README.adoc -------------------------------------------------------------------------------- /config/console-samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/console-samples/kustomization.yaml -------------------------------------------------------------------------------- /config/console-samples/manifests/1-jenkins-platform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/console-samples/manifests/1-jenkins-platform.yaml -------------------------------------------------------------------------------- /config/console-samples/manifests/1-typical-pipeline-java.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/console-samples/manifests/1-typical-pipeline-java.yaml -------------------------------------------------------------------------------- /config/console-samples/manifests/2-tekton-platform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/console-samples/manifests/2-tekton-platform.yaml -------------------------------------------------------------------------------- /config/console-samples/manifests/2-typical-pipeline-nodejs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/console-samples/manifests/2-typical-pipeline-nodejs.yaml -------------------------------------------------------------------------------- /config/console-samples/manifests/3-private-platform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/console-samples/manifests/3-private-platform.yaml -------------------------------------------------------------------------------- /config/crd/bases/redhatgov.io_ploigospipelines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/crd/bases/redhatgov.io_ploigospipelines.yaml -------------------------------------------------------------------------------- /config/crd/bases/redhatgov.io_ploigosplatforms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/crd/bases/redhatgov.io_ploigosplatforms.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/default/kustomization.yaml -------------------------------------------------------------------------------- /config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/manager/manager.yaml -------------------------------------------------------------------------------- /config/manifests/bases/ploigos-software-factory-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/manifests/bases/ploigos-software-factory-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /config/manifests/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/manifests/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/cluster_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/rbac/cluster_role.yaml -------------------------------------------------------------------------------- /config/rbac/cluster_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/rbac/cluster_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/ploigospipeline_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/rbac/ploigospipeline_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/ploigospipeline_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/rbac/ploigospipeline_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/ploigosplatform_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/rbac/ploigosplatform_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/ploigosplatform_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/rbac/ploigosplatform_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/rbac/service_account.yaml -------------------------------------------------------------------------------- /config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /config/samples/redhatgov_v1alpha1_ploigospipeline_molecule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/samples/redhatgov_v1alpha1_ploigospipeline_molecule.yaml -------------------------------------------------------------------------------- /config/samples/redhatgov_v1alpha1_ploigosplatform_molecule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/samples/redhatgov_v1alpha1_ploigosplatform_molecule.yaml -------------------------------------------------------------------------------- /config/scorecard/bases/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/scorecard/bases/config.yaml -------------------------------------------------------------------------------- /config/scorecard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/scorecard/kustomization.yaml -------------------------------------------------------------------------------- /config/scorecard/patches/basic.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/scorecard/patches/basic.config.yaml -------------------------------------------------------------------------------- /config/scorecard/patches/olm.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/scorecard/patches/olm.config.yaml -------------------------------------------------------------------------------- /config/testing/cluster_scope/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/testing/cluster_scope/kustomization.yaml -------------------------------------------------------------------------------- /config/testing/debug_logs_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/testing/debug_logs_patch.yaml -------------------------------------------------------------------------------- /config/testing/manager_image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/testing/manager_image.yaml -------------------------------------------------------------------------------- /config/testing/pull_policy/Always.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/testing/pull_policy/Always.yaml -------------------------------------------------------------------------------- /config/testing/pull_policy/IfNotPresent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/testing/pull_policy/IfNotPresent.yaml -------------------------------------------------------------------------------- /config/testing/pull_policy/Never.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/config/testing/pull_policy/Never.yaml -------------------------------------------------------------------------------- /hack/ci-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/hack/ci-setup.sh -------------------------------------------------------------------------------- /hack/operate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/hack/operate.conf -------------------------------------------------------------------------------- /hack/operate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/hack/operate.sh -------------------------------------------------------------------------------- /hack/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/hack/requirements.txt -------------------------------------------------------------------------------- /library/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/library/LICENSE -------------------------------------------------------------------------------- /library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/library/README.md -------------------------------------------------------------------------------- /library/k8s_json_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/library/k8s_json_patch.py -------------------------------------------------------------------------------- /molecule/default/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/molecule/default/converge.yml -------------------------------------------------------------------------------- /molecule/default/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/molecule/default/create.yml -------------------------------------------------------------------------------- /molecule/default/destroy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/molecule/default/destroy.yml -------------------------------------------------------------------------------- /molecule/default/kustomize.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/molecule/default/kustomize.yml -------------------------------------------------------------------------------- /molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/molecule/default/molecule.yml -------------------------------------------------------------------------------- /molecule/default/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/molecule/default/prepare.yml -------------------------------------------------------------------------------- /molecule/default/tasks/ploigos_software_factory_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/molecule/default/tasks/ploigos_software_factory_test.yml -------------------------------------------------------------------------------- /molecule/default/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/molecule/default/verify.yml -------------------------------------------------------------------------------- /molecule/ocp-cluster/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/molecule/ocp-cluster/converge.yml -------------------------------------------------------------------------------- /molecule/ocp-cluster/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/molecule/ocp-cluster/create.yml -------------------------------------------------------------------------------- /molecule/ocp-cluster/destroy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/molecule/ocp-cluster/destroy.yml -------------------------------------------------------------------------------- /molecule/ocp-cluster/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/molecule/ocp-cluster/molecule.yml -------------------------------------------------------------------------------- /playbooks/ploigos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/playbooks/ploigos.yml -------------------------------------------------------------------------------- /playbooks/roles: -------------------------------------------------------------------------------- 1 | ../roles -------------------------------------------------------------------------------- /requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/requirements.yml -------------------------------------------------------------------------------- /roles/ploigos-pipeline/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/ploigos-pipeline/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-pipeline/tasks/main.yml -------------------------------------------------------------------------------- /roles/ploigos-pipeline/templates/pipeline-run.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-pipeline/templates/pipeline-run.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-pipeline/templates/ploigos-pipeline-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-pipeline/templates/ploigos-pipeline-values.yaml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/defaults/main.yml -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/files/gitlab-system.yml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: gitlab-system 5 | -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/files/gitlab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/files/gitlab.yml -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/files/gitlab_ci_role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/files/gitlab_ci_role.yml -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/tasks/cleanup-ploigos-platform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/tasks/cleanup-ploigos-platform.yml -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/tasks/deploy_services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/tasks/deploy_services.yml -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/tasks/generate_gpg_key.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/tasks/generate_gpg_key.yml -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/tasks/gitlab_ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/tasks/gitlab_ci.yaml -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/tasks/install_operatorgroup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/tasks/install_operatorgroup.yml -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/tasks/main.yml -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/tasks/service_access_init.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/tasks/service_access_init.yml -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/catalog-source.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/catalog-source.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/container-builder.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/container-builder.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/custom-resources/argocd.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/custom-resources/argocd.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/custom-resources/gitea.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/custom-resources/gitea.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/custom-resources/gitlab.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/custom-resources/gitlab.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/custom-resources/nexus_artifacts.yml.j2: -------------------------------------------------------------------------------- 1 | nexus_containers.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/custom-resources/nexus_containers.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/custom-resources/nexus_containers.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/custom-resources/quay.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/custom-resources/quay.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/custom-resources/rhsso.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/custom-resources/rhsso.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/custom-resources/selenium.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/custom-resources/selenium.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/custom-resources/sonarqube.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/custom-resources/sonarqube.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/gitlab-resources/gitlab_ci.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/gitlab-resources/gitlab_ci.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/gitlab-resources/gitlab_ci_binding.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/gitlab-resources/gitlab_ci_binding.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/gitlab-resources/gitlab_ci_configmap.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/gitlab-resources/gitlab_ci_configmap.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/gitlab-resources/gitlab_ci_pvc.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/gitlab-resources/gitlab_ci_pvc.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/gitlab-resources/gitlab_ci_serviceaccount.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/gitlab-resources/gitlab_ci_serviceaccount.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/gitlab-resources/gitlab_route.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/gitlab-resources/gitlab_route.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/jenkins-rolebinding.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/jenkins-rolebinding.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/jenkins.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/jenkins.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/operator-group.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/operator-group.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/ploigos-platform-config-mvn.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/ploigos-platform-config-mvn.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/ploigos-platform-config-npm.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/ploigos-platform-config-npm.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/ploigos-platform-config-secrets-mvn.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/ploigos-platform-config-secrets-mvn.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/ploigos-platform-config-secrets-npm.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/ploigos-platform-config-secrets-npm.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/ploigos-service-account-secret.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/ploigos-service-account-secret.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/subscriptions/argocd.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/subscriptions/argocd.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/subscriptions/cert_manager.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/subscriptions/cert_manager.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/subscriptions/gitea.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/subscriptions/gitea.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/subscriptions/gitlab_ci.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/subscriptions/gitlab_ci.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/subscriptions/nexus_artifacts.yml.j2: -------------------------------------------------------------------------------- 1 | nexus_containers.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/subscriptions/nexus_containers.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/subscriptions/nexus_containers.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/subscriptions/quay.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/subscriptions/quay.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/subscriptions/rhsso.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/subscriptions/rhsso.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/subscriptions/selenium.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/subscriptions/selenium.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/subscriptions/sonarqube.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/subscriptions/sonarqube.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/subscriptions/tekton.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/subscriptions/tekton.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/deployment/templates/trustedcabundle.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/deployment/templates/trustedcabundle.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/sso-integration/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/sso-integration/defaults/main.yml -------------------------------------------------------------------------------- /roles/ploigos-platform/sso-integration/tasks/argocd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/sso-integration/tasks/argocd.yml -------------------------------------------------------------------------------- /roles/ploigos-platform/sso-integration/tasks/gitea.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/sso-integration/tasks/gitea.yml -------------------------------------------------------------------------------- /roles/ploigos-platform/sso-integration/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/sso-integration/tasks/main.yml -------------------------------------------------------------------------------- /roles/ploigos-platform/sso-integration/tasks/quay.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/sso-integration/tasks/quay.yml -------------------------------------------------------------------------------- /roles/ploigos-platform/sso-integration/tasks/sonarqube.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/sso-integration/tasks/sonarqube.yml -------------------------------------------------------------------------------- /roles/ploigos-platform/sso-integration/templates/argocd-rhsso-patch.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/sso-integration/templates/argocd-rhsso-patch.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/sso-integration/templates/quay-config-rhsso-block.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/sso-integration/templates/quay-config-rhsso-block.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/sso-integration/templates/realm.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/sso-integration/templates/realm.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/sso-integration/templates/rhsso-argocd-client.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/sso-integration/templates/rhsso-argocd-client.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/sso-integration/templates/rhsso-gitea-client.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/sso-integration/templates/rhsso-gitea-client.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/sso-integration/templates/rhsso-quay-client.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/sso-integration/templates/rhsso-quay-client.yml.j2 -------------------------------------------------------------------------------- /roles/ploigos-platform/sso-integration/templates/rhsso-sonar4-client.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/roles/ploigos-platform/sso-integration/templates/rhsso-sonar4-client.yml.j2 -------------------------------------------------------------------------------- /vars/ploigos-platform/common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/vars/ploigos-platform/common.yml -------------------------------------------------------------------------------- /watches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ploigos/ploigos-software-factory-operator/HEAD/watches.yaml --------------------------------------------------------------------------------