gitextract_wrburklz/ ├── .github/ │ └── workflows/ │ ├── lint-test.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── charts/ │ ├── nexusiq/ │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── references/ │ │ │ ├── README.MD │ │ │ └── nexus-iq-config-template.yml │ │ ├── templates/ │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── pvc.yaml │ │ │ ├── service.yaml │ │ │ └── tests/ │ │ │ └── test-nexusiq.yaml │ │ └── values.yaml │ ├── sonarqube/ │ │ ├── .helmignore │ │ ├── CHANGELOG.md │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates/ │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── change-admin-password-hook.yml │ │ │ ├── config.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── init-sysctl.yaml │ │ │ ├── install-plugins.yaml │ │ │ ├── postgres-config.yaml │ │ │ ├── pvc.yaml │ │ │ ├── secret.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── sonarqube-scc.yaml │ │ │ └── tests/ │ │ │ ├── sonarqube-test.yaml │ │ │ └── test-config.yaml │ │ └── values.yaml │ └── sonatype-nexus/ │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates/ │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── adtl-configmap.yaml │ │ ├── backup-pv.yaml │ │ ├── backup-pvc.yaml │ │ ├── backup-secret.yaml │ │ ├── cloudiam-pv.yaml │ │ ├── cloudiam-pvc.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── configmap.yaml │ │ ├── deployment-statefulset.yaml │ │ ├── ingress-docker.yaml │ │ ├── ingress.yaml │ │ ├── initpwd-job.yaml │ │ ├── proxy-ks-secret.yaml │ │ ├── proxy-route.yaml │ │ ├── proxy-svc.yaml │ │ ├── pv.yaml │ │ ├── pvc.yaml │ │ ├── rclone-config-secret.yaml │ │ ├── route.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── docs/ │ ├── che-0.1.1.tgz │ ├── che-0.1.2.tgz │ ├── index.html │ └── index.yaml ├── lint.yaml ├── old-charts/ │ └── che/ │ ├── .gitignore │ ├── .helmignore │ ├── Chart.yaml │ ├── Readme.md │ ├── custom-charts/ │ │ ├── che-devfile-registry/ │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates/ │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── che-jaeger/ │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates/ │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service-agent.yaml │ │ │ │ ├── service-collector.yaml │ │ │ │ └── service-query.yaml │ │ │ └── values.yaml │ │ ├── che-keycloak/ │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates/ │ │ │ │ ├── deployment.yaml │ │ │ │ ├── endpoints-monitor-role.yaml │ │ │ │ ├── endpoints-monitor-rolebinding.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── keycloak-data-claim.yaml │ │ │ │ ├── keycloak-log-claim.yaml │ │ │ │ ├── keycloak-serviceaccount.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── che-plugin-registry/ │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates/ │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ └── che-postgres/ │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates/ │ │ │ ├── deployment.yaml │ │ │ ├── postgres-data-claim.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── requirements.yaml │ ├── templates/ │ │ ├── NOTES.txt │ │ ├── _hostHelper.tpl │ │ ├── _keycloakAuthUrlHelper.tpl │ │ ├── _keycloakHostHelper.tpl │ │ ├── _secretHelper.tpl │ │ ├── cluster-role-binding.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── exec-role.yaml │ │ ├── ingress.yaml │ │ ├── metrics-ingress.yaml │ │ ├── pvc.yaml │ │ ├── registry-pull-secret.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── wildcard-certificate.yaml │ │ ├── workspace-exec-role-binding.yaml │ │ ├── workspace-service-account.yaml │ │ ├── workspace-view-role-binding.yaml │ │ └── workspace-view-role.yaml │ ├── tiller-rbac.yaml │ ├── values/ │ │ ├── default-host.yaml │ │ ├── multi-user.yaml │ │ └── tls.yaml │ └── values.yaml ├── pom.xml └── test.yaml