Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b5ad2bf
chore: port agnosticg charts to helm repo
evanshortiss Feb 9, 2026
d5c5891
chore: use main for helm charts
evanshortiss Feb 10, 2026
172b134
feat: use app of apps structure
evanshortiss Feb 10, 2026
c6595bd
chore: remove backup
evanshortiss Feb 10, 2026
68b8b49
chore: use new workshop deployer
evanshortiss Feb 10, 2026
7cbafa5
feat: enable orchestrator with app of apps pattern
evanshortiss Feb 10, 2026
38641f7
fix: default to main helm charts
evanshortiss Feb 11, 2026
58e7d62
feat: devspaces oidc and github integration config
evanshortiss Feb 13, 2026
27bb900
chore: add new cluster oauth for user login
evanshortiss Feb 14, 2026
85e5c8c
feat: auto create users in quay
evanshortiss Feb 16, 2026
e775a0e
feat: add litellm credentials from agv
evanshortiss Feb 17, 2026
a26384f
fix: wait for apps to be created
evanshortiss Feb 18, 2026
41d6303
feat: add amq streams to deployment
evanshortiss Feb 19, 2026
fd49065
fix: more retries for pe ready and set parasol ns
evanshortiss Feb 24, 2026
7c82311
fix: simplify argocd checks to use dedicated label
evanshortiss Feb 24, 2026
567bec2
chore: enable full argo health check
evanshortiss Feb 24, 2026
7184ae6
fix: guard against missing status in argocd app checks
evanshortiss Feb 24, 2026
cad1b76
fix: wait longer for deployment to complete
evanshortiss Feb 24, 2026
f558266
fix: don't fail provision on argocd apps error
evanshortiss Feb 25, 2026
30efc2f
refactor(developer-hub): update Jinja2 template for dh-config values
evanshortiss Feb 26, 2026
fc80259
chore: update base environment configuration
evanshortiss Mar 26, 2026
1fde04c
feat: add pe1 RBAC to openshift-gitops ArgoCD CR
evanshortiss Jun 10, 2026
adc6279
fix: add preferred_username to ArgoCD RBAC scopes
evanshortiss Jun 11, 2026
c5422b6
fix: gitops permissions
evanshortiss Jul 24, 2026
9c8a9f0
refactor(gitops): delegate OpenShift GitOps setup to core_workloads
evanshortiss Sep 14, 2026
112e893
refactor(gitops)!: remove OpenShift GitOps installation code
evanshortiss Sep 14, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
site.yml
site.yaml
provision-user-data.yaml
provision-user-data.yml
.claude
307 changes: 77 additions & 230 deletions roles/ocp4_workload_platform_engineering_workshop/defaults/main.yml

Large diffs are not rendered by default.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---

- name: Create app-of-apps Application
kubernetes.core.k8s:
state: present
definition: "{{ lookup('template', 'app-of-apps/app-of-apps-application.yaml.j2') | from_yaml }}"
retries: 10
delay: 30
ignore_errors: true
register: app_of_apps_result
until: app_of_apps_result is not failed

- name: Print app_of_apps_result from the previous task
ansible.builtin.debug:
var: app_of_apps_result

This file was deleted.

15 changes: 0 additions & 15 deletions roles/ocp4_workload_platform_engineering_workshop/tasks/gitlab.yml

This file was deleted.

This file was deleted.

16 changes: 0 additions & 16 deletions roles/ocp4_workload_platform_engineering_workshop/tasks/noobaa.yml

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

15 changes: 0 additions & 15 deletions roles/ocp4_workload_platform_engineering_workshop/tasks/quay.yml

This file was deleted.

Loading