Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
a43c5b2
Update setup scripts and helm charts for oc-rc1
hanzjk Mar 17, 2026
0d72194
Regenerate api clients
hanzjk Mar 17, 2026
40f4250
Refactor component workflows to use ClusterWorkflow kind
hanzjk Mar 17, 2026
d40ba12
Refactor OpenChoreo client methods
hanzjk Mar 17, 2026
3dd4f0d
Merge remote-tracking branch 'upstream/main' into oc-rc1
hanzjk Mar 17, 2026
3723659
Refactor GetEnvResourceConfigs to fetch defaults from ComponentType s…
hanzjk Mar 17, 2026
08bb912
Fix issues related to oc-upgrade
hanzjk Mar 18, 2026
c4e8ed1
add RBAC for WSO2 API Platform CRDs in setup script
hanzjk Mar 18, 2026
4eeade1
Fix clientId for OpenChoreo workload publisher in values.yaml
hanzjk Mar 18, 2026
00cfbb2
Update quickstart guide and documentation for oc migrations
hanzjk Mar 18, 2026
34c0f95
Address review comments
hanzjk Mar 19, 2026
f90b59e
Update installation and uninstallation scripts
hanzjk Mar 19, 2026
4c17ac4
Address review comments
hanzjk Mar 19, 2026
2c4525b
Fix update configurations call
hanzjk Mar 19, 2026
db64c07
Enable otel collector
hanzjk Mar 19, 2026
4e9656a
Merge remote-tracking branch 'upstream/main' into oc-rc1
hanzjk Mar 19, 2026
65105d8
Refactor WorkflowRun handling and update YAML namespace configuration
hanzjk Mar 19, 2026
1e622c1
Merge remote-tracking branch 'upstream/main' into oc-rc1
hanzjk Mar 19, 2026
e8edc69
Implement DNS-1123 compliant naming for WorkflowRun and add helper fu…
hanzjk Mar 19, 2026
8d42f16
Enhance error handling in setup-openchoreo.sh
hanzjk Mar 19, 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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ dev-logs:

dev-migrate:
@echo "🗄️ Running database migrations..."
@docker exec agent-manager-service sh -c "cd /go/src && make dev-migrate"
@cd agent-manager-service && make dev-migrate
@echo "✅ Migrations completed"

# OpenChoreo lifecycle management
Expand Down
4 changes: 2 additions & 2 deletions agent-manager-service/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ spec: ## Code gen type/client for openapi spec.
.PHONY: gen-oc-client
gen-oc-client: ## Generate OpenChoreo API client from upstream OpenAPI spec.
@echo "Generating OpenChoreo client from upstream spec"
@curl -sL "https://raw.githubusercontent.com/openchoreo/openchoreo/release-v0.16/openapi/openchoreo-api.yaml" -o /tmp/openchoreo-api.yaml
@curl -sL "https://raw.githubusercontent.com/openchoreo/openchoreo/v1.0.0-rc.1/openapi/openchoreo-api.yaml" -o /tmp/openchoreo-api.yaml
@oapi-codegen -config clients/openchoreosvc/gen/oapi-codegen.yaml /tmp/openchoreo-api.yaml
@oapi-codegen -config clients/openchoreosvc/gen/oapi-codegen-client.yaml /tmp/openchoreo-api.yaml
@rm /tmp/openchoreo-api.yaml
Expand All @@ -66,7 +66,7 @@ gen-oc-client: ## Generate OpenChoreo API client from upstream OpenAPI spec.
.PHONY: gen-observer-client
gen-observer-client: ## Generate Observer API client from upstream OpenAPI spec.
@echo "Generating Observer client from upstream spec"
@curl -sL "https://raw.githubusercontent.com/openchoreo/openchoreo/release-v0.16/cmd/observer/openapi.yaml" -o /tmp/observer-api.yaml
@curl -sL "https://raw.githubusercontent.com/openchoreo/openchoreo/v1.0.0-rc.1/openapi/observer-api.yaml" -o /tmp/observer-api.yaml
@oapi-codegen -config clients/observabilitysvc/gen/oapi-codegen.yaml /tmp/observer-api.yaml
@oapi-codegen -config clients/observabilitysvc/gen/oapi-codegen-client.yaml /tmp/observer-api.yaml
@rm /tmp/observer-api.yaml
Expand Down
Loading
Loading