Skip to content

Commit

Permalink
Address feedback
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro Pedraza <alejandro@buoyant.io>
  • Loading branch information
alpeb committed Aug 1, 2019
1 parent 08bfba1 commit db6db72
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pkg/inject/template-values.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package inject

type (
// InjectValues contains the top-level elements in the Helm charts
InjectValues struct {
// Values contains the top-level elements in the Helm charts
Values struct {
Namespace string
ClusterDomain string
HighAvailability bool
Expand Down Expand Up @@ -32,11 +32,16 @@ type (
Capabilities *Capabilities
IgnoreInboundPorts string
IgnoreOutboundPorts string
Image Image
Image *Image
SAMountPath *SAMountPath
Resources *Resources
}

// DebugContainer contains the fields to set the debugging sidecar
DebugContainer struct {
Image *Image
}

// Image contains the details to define a container image
Image struct {
Name string
Expand Down Expand Up @@ -80,12 +85,7 @@ type (
// Identity contains the fields to set the identity variables in the proxy
// sidecar container
Identity struct {
Issuer Issuer
TrustDomain string
}

// Issuer contains the trust root certificate for Identity
Issuer struct {
CrtPEM string
TrustAnchorsPEM string
TrustDomain string
}
)

0 comments on commit db6db72

Please sign in to comment.