- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for PrintBootstrapDump (0.17 sec)
-
istioctl/pkg/writer/envoy/configdump/configdump_test.go
if tt.callPrime { cw.Prime(cd) } err := cw.PrintBootstrapDump("json") if tt.wantOutputFile != "" { util.CompareContent(t, gotOut.Bytes(), tt.wantOutputFile) } if err == nil && tt.wantErr { t.Errorf("PrintBootstrapDump (%v) did not produce expected err", tt.name) } else if err != nil && !tt.wantErr { t.Errorf("PrintBootstrapDump (%v) produced unexpected err: %v", tt.name, err) } }) } }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jan 03 23:08:06 UTC 2024 - 3.5K bytes - Viewed (0) -
istioctl/pkg/writer/ztunnel/configdump/configdump.go
} m := make(map[string]T) if err := json.Unmarshal(input, &m); err != nil { return err } *i = maps.Values(m) return nil } // PrintBootstrapDump prints just the bootstrap config dump to the ConfigWriter stdout func (c *ConfigWriter) PrintBootstrapDump(outputFormat string) error { // TODO return nil } func (c *ConfigWriter) PrintFullSummary() error { _, _ = c.Stdout.Write([]byte("\n"))
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 06 20:18:34 UTC 2024 - 3.9K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/configdump.go
if err != nil { return fmt.Errorf("error unmarshalling config dump response from Envoy: %v", err) } c.configDump = w return nil } // PrintBootstrapDump prints just the bootstrap config dump to the ConfigWriter stdout func (c *ConfigWriter) PrintBootstrapDump(outputFormat string) error { if c.configDump == nil { return fmt.Errorf("config writer has not been primed") }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Feb 29 20:46:41 UTC 2024 - 7.4K bytes - Viewed (0) -
istioctl/pkg/proxyconfig/proxyconfig.go
if err != nil { return err } switch outputFormat { case summaryOutput: return configWriter.PrintBootstrapSummary() case jsonOutput, yamlOutput: return configWriter.PrintBootstrapDump(outputFormat) default: return fmt.Errorf("output format %q not supported", outputFormat) } }, ValidArgsFunction: completion.ValidPodsNameArgs(ctx), }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 15:53:49 UTC 2024 - 50.6K bytes - Viewed (0)