Skip to content

Commit

Permalink
Enclosed all glob patterns in yaml file in single quotes
Browse files Browse the repository at this point in the history
Signed-off-by: Anand Francis Joseph <anjoseph@redhat.com>
  • Loading branch information
anandf committed Apr 30, 2024
1 parent f2d1fb5 commit b3f26b1
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ spec:
sourceRepos:
- '*'
destinations:
- *
- '*'
destinationServiceAccounts:
- server: https://kubernetes.default.svc
namespace: guestbook
Expand Down Expand Up @@ -237,10 +237,10 @@ spec:
sourceRepos:
- '*'
destinations:
- namespace: *
- namespace: '*'
server: https://kubernetes.default.svc
destinationServiceAccounts:
- namespace: *
- namespace: '*'
server: https://kubernetes.default.svc
defaultServiceAccount: generic-deployer
```
Expand Down Expand Up @@ -476,7 +476,7 @@ eg:
...
destinationServiceAccounts:
- server: https://kubernetes.default.svc
namespace: *
namespace: '*'
defaultServiceAccount: mynamespace:guestbook-deployer
...
```
Expand All @@ -494,10 +494,10 @@ Lets assume that the `AppProject` has the below `destinationServiceAccounts` con
namespace: guestbook-prod
defaultServiceAccount: guestbook-prod-deployer
- server: https://kubernetes.default.svc
namespace: guestbook-*
namespace: 'guestbook-*'
defaultServiceAccount: guestbook-generic-deployer
- server: https://kubernetes.default.svc
namespace: *
namespace: '*'
defaultServiceAccount: generic-deployer
...
```
Expand Down Expand Up @@ -561,7 +561,7 @@ spec:
sourceRepos:
- '*'
destinations:
- namespace: *
- namespace: '*'
server: https://kubernetes.default.svc
namespace: guestbook
impersonate:
Expand Down

0 comments on commit b3f26b1

Please sign in to comment.