Skip to content

Commit

Permalink
add yaml tag to istio related config
Browse files Browse the repository at this point in the history
  • Loading branch information
sanposhiho committed Oct 20, 2023
1 parent ea55f23 commit b9c19ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ type Config struct {
// TODO: the following fields should be removed after we stop depending on deployment.
// So, we don't put them in the documentation.
// IstioSidecarProxyDefaultCPU is the default CPU resource request of the istio sidecar proxy (default: 100m)
IstioSidecarProxyDefaultCPU string
IstioSidecarProxyDefaultCPU string `yaml:"IstioSidecarProxyDefaultCPU"`
// IstioSidecarProxyDefaultMemory is the default Memory resource request of the istio sidecar proxy (default: 200Mi)
IstioSidecarProxyDefaultMemory string
IstioSidecarProxyDefaultMemory string `yaml:"IstioSidecarProxyDefaultMemory"`
}

// ParseConfig parses the config file (yaml) and returns Config.
Expand Down

0 comments on commit b9c19ff

Please sign in to comment.