-
Notifications
You must be signed in to change notification settings - Fork 11
Enhance README and add example Terraform variables #137
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
…ultiparty sandbox. Updated the README to provide a comprehensive overview of the environment setup, including prerequisites, configuration options, and troubleshooting steps. Introduced a new example `terraform.tfvars` file to guide users in configuring their Kaleido Platform API settings and environment details.
| # IMPORTANT: Use your Kaleido Platform user credentials (NOT Keycloak or K8s secrets) | ||
| # | ||
| # For local K8s with ingress: https://your-hostname.domain | ||
| # For port-forward: https://localhost:5000 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: this is not supported because of the host based routing the platform does
| ### Certificate Errors | ||
|
|
||
| **Error:** `x509: certificate is not trusted` | ||
|
|
||
| **Solution:** | ||
| ```bash | ||
| export KALEIDO_PLATFORM_INSECURE=true | ||
| terraform apply | ||
| ``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just noting this should only be relevant for software users running the platform locally as per our "Quick Start" guide
onelapahead
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just requesting minor edits
| # Step 4: Verify deletion | ||
| kubectl get pods -n default | grep -E "amr-0|bnr-0|kmr-0|pdr-0|inr-0" | ||
| # Should return no results |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are software-specific details that might confuse our SaaS users - think its best we leave this off for now
| ### Connection Refused | ||
|
|
||
| **Error:** `connection refused` on localhost | ||
|
|
||
| **Solutions:** | ||
| - ✓ Check port-forward is running: `ps aux | grep port-forward` | ||
| - ✓ Verify service port: `kubectl get svc kaleidoplatform-apigw -n default` | ||
| - ✓ Restart port-forward if needed | ||
| ``` | ||
| kubectl port-forward svc/kaleidoplatform-apigw 5000:5000 -n default | ||
| ``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here I think we can remove this as our SaaS users won't know what this means
No description provided.