Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for istio_agent_ (0.29 sec)

  1. pilot/cmd/pilot-agent/status/server.go

    	drain                 func()
    }
    
    func initializeMonitoring() (prometheus.Gatherer, error) {
    	registry := prometheus.NewRegistry()
    	wrapped := prometheus.WrapRegistererWithPrefix("istio_agent_", registry)
    	wrapped.MustRegister(collectors.NewProcessCollector(collectors.ProcessCollectorOpts{}))
    	wrapped.MustRegister(collectors.NewGoCollector())
    
    	_, err := monitoring.RegisterPrometheusExporter(wrapped, registry)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/options/agent.go

    	"istio.io/istio/pkg/bootstrap/platform"
    	istioagent "istio.io/istio/pkg/istio-agent"
    	"istio.io/istio/pkg/util/sets"
    	"istio.io/istio/pkg/wasm"
    )
    
    // Similar with ISTIO_META_, which is used to customize the node metadata - this customizes extra header.
    const xdsHeaderPrefix = "XDS_HEADER_"
    
    func NewAgentOptions(proxy *ProxyArgs, cfg *meshconfig.ProxyConfig, sds istioagent.SDSServiceFactory) *istioagent.AgentOptions {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/options/statusserver.go

    	"istio.io/istio/pilot/cmd/pilot-agent/status"
    	"istio.io/istio/pilot/cmd/pilot-agent/status/ready"
    	istioagent "istio.io/istio/pkg/istio-agent"
    	"istio.io/istio/pkg/model"
    )
    
    func NewStatusServerOptions(ipv6 bool, t model.NodeType, proxyConfig *meshconfig.ProxyConfig, agent *istioagent.Agent) *status.Options {
    	return &status.Options{
    		IPv6:           ipv6,
    		PodIP:          InstanceIPVar.Get(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/options/agent_proxy.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package options
    
    import (
    	istioagent "istio.io/istio/pkg/istio-agent"
    )
    
    // ProxyArgs provides all of the configuration parameters for the Pilot proxy.
    type ProxyArgs struct {
    	istioagent.Proxy
    
    	StsPort            int
    	TokenManagerPlugin string
    
    	MeshConfigFile string
    
    	// proxy config flags (named identically)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/main.go

    // limitations under the License.
    
    package main
    
    import (
    	"os"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/cmd/pilot-agent/app"
    	istioagent "istio.io/istio/pkg/istio-agent"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/security/pkg/nodeagent/sds"
    )
    
    // TODO: get the config and bootstrap from istiod, by passing the env
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/app/cmd.go

    	"istio.io/istio/pilot/pkg/util/network"
    	"istio.io/istio/pkg/bootstrap"
    	"istio.io/istio/pkg/cmd"
    	"istio.io/istio/pkg/collateral"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/envoy"
    	istioagent "istio.io/istio/pkg/istio-agent"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/model"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/protomarshal"
    	"istio.io/istio/pkg/util/sets"
    	"istio.io/istio/pkg/version"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. pkg/istio-agent/leak_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package istioagent
    
    import (
    	"testing"
    
    	"istio.io/istio/tests/util/leak"
    )
    
    func TestMain(m *testing.M) {
    	// CheckMain asserts that no goroutines are leaked after a test package exits.
    	leak.CheckMain(m)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 19 21:39:03 UTC 2021
    - 795 bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/files/gateway-injection-template.yaml

        - mountPath: /var/run/secrets/istio
          name: istiod-ca-cert
        {{- end }}
        - mountPath: /var/lib/istio/data
          name: istio-data
        # SDS channel between istioagent and Envoy
        - mountPath: /etc/istio/proxy
          name: istio-envoy
        - mountPath: /var/run/secrets/tokens
          name: istio-token
        {{- if .Values.global.mountMtlsCerts }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. pkg/istio-agent/tap_proxy.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package istioagent
    
    import (
    	"fmt"
    	"strings"
    	"time"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/reflection"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/files/grpc-agent.yaml

        - mountPath: /var/run/secrets/istio
          name: istiod-ca-cert
        {{- end }}
        - mountPath: /var/lib/istio/data
          name: istio-data
        # UDS channel between istioagent and gRPC client for XDS/SDS
        - mountPath: /etc/istio/proxy
          name: istio-xds
        - mountPath: /var/run/secrets/tokens
          name: istio-token
        {{- if .Values.global.mountMtlsCerts }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top