W-21769581 rtf httproute template placeholder update kt#1678
Open
kevintroller wants to merge 3 commits intov3.0from
Open
W-21769581 rtf httproute template placeholder update kt#1678kevintroller wants to merge 3 commits intov3.0from
kevintroller wants to merge 3 commits intov3.0from
Conversation
- Describe Handlebars-style placeholders and UI support for host/path
- Replace outdated note about future UI support
- Add IMPORTANT for legacy app-name breaking change vs {{ .ApplicationName }}
- Fix UniqueId example typo; align FAQ with ingress vs HTTP route conventions
Made-with: Cursor
Split the IMPORTANT block into labeled lines (configured URL, previous vs current result, recommended {{ .ApplicationName }} usage).
Made-with: Cursor
| |=== | ||
|
|
||
| Use the `{ .ResourceName }` placeholder to ensure the uniqueness of the name of the HTTP routing resource being created, especially if the deployment has multiple endpoints. It is recommended to use this placeholder; otherwise, you need to manually ensure the resource name uniqueness. Kubernetes enforces that the names of resources must be unique within a namespace, but not across namespaces.For more details, refer to https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/#when-to-use-multiple-namespaces[Namespaces Kubernetes documentation]. | ||
| Use the `{{ .ResourceName }}` placeholder to ensure the uniqueness of the name of the HTTP routing resource being created, especially if the deployment has multiple endpoints. It is recommended to use this placeholder; otherwise, you need to manually ensure the resource name uniqueness. Kubernetes enforces that the names of resources must be unique within a namespace, but not across namespaces.For more details, refer to https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/#when-to-use-multiple-namespaces[Namespaces Kubernetes documentation]. |
There was a problem hiding this comment.
I think there's a whitespace missing
Suggested change
| Use the `{{ .ResourceName }}` placeholder to ensure the uniqueness of the name of the HTTP routing resource being created, especially if the deployment has multiple endpoints. It is recommended to use this placeholder; otherwise, you need to manually ensure the resource name uniqueness. Kubernetes enforces that the names of resources must be unique within a namespace, but not across namespaces.For more details, refer to https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/#when-to-use-multiple-namespaces[Namespaces Kubernetes documentation]. | |
| Use the `{{ .ResourceName }}` placeholder to ensure the uniqueness of the name of the HTTP routing resource being created, especially if the deployment has multiple endpoints. It is recommended to use this placeholder; otherwise, you need to manually ensure the resource name uniqueness. Kubernetes enforces that the names of resources must be unique within a namespace, but not across namespaces. For more details, refer to https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/#when-to-use-multiple-namespaces[Namespaces Kubernetes documentation]. |
| ---- | ||
|
|
||
| Use the `{{ .UniqueID }}` placeholder to create a unique application URL. This is useful if you want to deploy two applications with same name from different business groups. For example, if you use `/api/{{ .UniqueID }}.com` in the path section of the ingress template, the resulting endpoint will be similar to `/api/7jkbic.com`. | ||
| Use the `{{ .UniqueId }}` placeholder to create a unique application URL. This is useful if you want to deploy two applications with same name from different business groups. For example, if you use `/api/{{ .UniqueId }}.com` in the path section of the ingress template, the resulting endpoint will be similar to `/api/7jkbic.com`. |
There was a problem hiding this comment.
UniqueID was ok, that's the one we're using
|
|
||
| `https://test-app.testrtf.com/app-name` | ||
|
|
||
| To get the application name in the URL, use `https://test-app.testrtf.com/{{ .ApplicationName }}` (or the appropriate segment for your template). |
| @@ -35,7 +37,7 @@ The following property placeholders are available: | |||
| | `{{ .UniqueId }}`| Unique ID placeholder to create a unique application URL | |||
Made-with: Cursor
IsaacEldridge
approved these changes
Apr 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Writer's Quality Checklist
Before merging your PR, did you: