Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions depot/containerstore/proxy_config_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ func writeProxyConfig(proxyConfig *envoy_bootstrap.Bootstrap, path string) error
if err != nil {
return err
}
return os.WriteFile(path, yamlStr, 0666)
return os.WriteFile(path, yamlStr, 0644)
}

func generateListeners(container executor.Container, requireClientCerts, http2Enabled bool) ([]*envoy_listener.Listener, error) {
Expand Down Expand Up @@ -685,7 +685,7 @@ func writeDiscoveryResponseYAML(resourceMsg proto.Message, outPath string) error
}

tmpPath := outPath + ".tmp"
if err := os.WriteFile(tmpPath, yamlStr, 0666); err != nil {
if err := os.WriteFile(tmpPath, yamlStr, 0644); err != nil {
return err
}

Expand Down