Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for server_features (0.32 sec)

  1. pkg/istio-agent/testdata/grpc-bootstrap.json

    {
      "xds_servers": [
        {
          "server_uri": "unix:///etc/istio/XDS",
          "channel_creds": [
            {
              "type": "insecure"
            }
          ],
          "server_features": [
            "xds_v3"
          ]
        }
      ],
      "node": {
        "id": "sidecar~127.0.0.1~pod1.fake-namespace~fake-namespace.svc.cluster.local",
        "metadata": {
          "GENERATOR": "grpc",
          "INSTANCE_IPS": "127.0.0.1",
          "ISTIO_VERSION": "version",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 957 bytes
    - Viewed (0)
  2. pkg/istio-agent/grpcxds/grpc_bootstrap.go

    	Config any    `json:"config,omitempty"`
    }
    
    type XdsServer struct {
    	ServerURI      string         `json:"server_uri,omitempty"`
    	ChannelCreds   []ChannelCreds `json:"channel_creds,omitempty"`
    	ServerFeatures []string       `json:"server_features,omitempty"`
    }
    
    type CertificateProvider struct {
    	PluginName string `json:"plugin_name,omitempty"`
    	Config     any    `json:"config,omitempty"`
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top