diff --git a/_docs/promotions/promotion-components.md b/_docs/promotions/promotion-components.md
index ebbaaf6cf..722a2f391 100644
--- a/_docs/promotions/promotion-components.md
+++ b/_docs/promotions/promotion-components.md
@@ -142,10 +142,10 @@ Code samples and internal references use `isc`.
| Environments |N/A | None |
| Product |`isc/resources/configuration/products` | Git user token |
| Applications |Git Source associated with Runtime | Git user token |
-| Promotion Flow |`isc/configuration/promotion-flows`| Git user token |
-| Promotion Policy |`isc/configuration/promotion-policies`| Git user token |
+| Promotion Flow |`isc/resources/configuration/promotion-flows`| Git user token |
+| Promotion Policy |`isc/resources/configuration/promotion-policies`| Git user token |
| Promotion Workflows |`isc/resources/control-planes/promotion-workflows` |Git user token |
-| Promotion Template |`isc/configuration/promotion-templates`| N/A |
+| Promotion Template |`isc/resources/configuration/promotion-templates`| N/A |
diff --git a/_docs/promotions/yaml/promotion-template-crd.md b/_docs/promotions/yaml/promotion-template-crd.md
index d64a8afc9..03485dfa2 100644
--- a/_docs/promotions/yaml/promotion-template-crd.md
+++ b/_docs/promotions/yaml/promotion-template-crd.md
@@ -25,6 +25,10 @@ kind: PromotionTemplate
metadata:
name: base-helm # any valid k8s name
spec:
+ applicationSourceSelector:
+ matchLabels:
+ codefresh.io/product: loans
+ priority: 1
versionSource: # get release version from this file
file: Chart.yaml
jsonPath: $appVersion
@@ -52,7 +56,7 @@ spec:
| `spec.applicationSourceSelector` | The label used to match the application to which to apply the Promotion Template. Application selectors conform to Kubernetes _label selectors_, defined as `matchLabels` with `key-value` pairs, `matchExpressions` with `key-operator-value` arrays, or a combination of both. The values identify all the Promotion Template manifests that match the specific application or applications within the target environment.| - | Required|
| `spec.applicationSourceSelector.matchLabels` | One or more `key-value` pairs, where each pair is equivalent to a condition in `matchExpressions`. If there are multiple `key-value` pairs, the AND operator is used.
For example:{::nomarkdown}
codefresh.io/environment: production
applies the Promotion Template to all applications within the Production Environment.codefresh.io/product: loans
applies the Promotion Template only to applications belonging to the Loans product.In
: The value _must match_ one of those specified in the values
array.NotIn
: The value _must NOT match_ any of those in the values
array.Exists
: Only the key
must exist regardless of its values.values
array must be empty. DoesNotExist
: The key
must not exist.values
array must be empty.