Add Namespace to Secret type

Signed-off-by: Jonatas Baldin <jonatas.baldin@gmail.com>
This commit is contained in:
Jonatas Baldin 2019-10-03 15:15:19 -03:00 committed by Alex Ellis
parent 496c513bea
commit 1cc93860d4

View File

@ -20,5 +20,6 @@ type DeleteFunctionRequest struct {
// Secret for underlying orchestrator // Secret for underlying orchestrator
type Secret struct { type Secret struct {
Name string `json:"name"` Name string `json:"name"`
Namespace string `json:"namespace"`
Value string `json:"value,omitempty"` Value string `json:"value,omitempty"`
} }