-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Add Namespace to Secret type #1334
Conversation
Signed-off-by: Jonatas Baldin <[email protected]>
gateway/requests/requests.go
Outdated
@@ -19,6 +19,7 @@ type DeleteFunctionRequest struct { | |||
|
|||
// Secret for underlying orchestrator | |||
type Secret struct { | |||
Name string `json:"name"` | |||
Value string `json:"value,omitempty"` | |||
Name string `json:"name"` |
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.
Why are we using the Secret struct from faas, if we have it in faas-provider too? Can we delete this copy?
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.
Yeah, took a look here and it's not being used anywhere. Removing it.
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.
Comment added.
Signed-off-by: Jonatas Baldin <[email protected]>
Can I update the |
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.
Approved
Sure, I cut a new release for you. |
Signed-off-by: Jonatas Baldin [email protected]
Description
Enables Namespace in Secret. Depends on faas-provider #28.
Motivation and Context
design/approved
labelTypes of changes
Checklist:
git commit -s