Skip to content

Commit

Permalink
fixed slack collector secret name
Browse files Browse the repository at this point in the history
  • Loading branch information
ca7alindev committed Sep 25, 2024
1 parent a5c76e8 commit 2f54fbb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/builder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Builder
on:
push:
branches:
- main
- fix-deployment-secret-name

defaults:
run:
Expand Down
4 changes: 2 additions & 2 deletions fn.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ func (f *Function) RunFunction(_ context.Context, req *fnv1beta1.RunFunctionRequ
"envFrom": []interface{}{
map[string]interface{}{
"secretRef": map[string]interface{}{
"name": secretName,
"name": secretName + "creds",
},
},
},
Expand Down Expand Up @@ -284,7 +284,7 @@ func (f *Function) RunFunction(_ context.Context, req *fnv1beta1.RunFunctionRequ
"envFrom": []interface{}{
map[string]interface{}{
"secretRef": map[string]interface{}{
"name": secretName,
"name": secretName + "creds",
},
},
},
Expand Down

0 comments on commit 2f54fbb

Please sign in to comment.