Skip to content

Commit

Permalink
chore: fix struct tag
Browse files Browse the repository at this point in the history
  • Loading branch information
moshloop committed Sep 13, 2024
1 parent f645575 commit 0c02f68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/envvar.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const EnvVarType = "env_var"
// +kubebuilder:object:generate=true
type EnvVar struct {
Name string `json:"name,omitempty" yaml:"name,omitempty" protobuf:"bytes,1,opt,name=name"`
ValueStatic string `json:"value,omitempty" yaml:"value,omitempty" protobuf:"bytes,2,opt,name=value" template="true"`
ValueStatic string `json:"value,omitempty" yaml:"value,omitempty" protobuf:"bytes,2,opt,name=value" template:"true"`
ValueFrom *EnvVarSource `json:"valueFrom,omitempty" yaml:"valueFrom,omitempty" protobuf:"bytes,3,opt,name=valueFrom"`
}

Expand Down

0 comments on commit 0c02f68

Please sign in to comment.