Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Basic (0.22 sec)

  1. cni/pkg/plugin/testdata/basic.txt.golden

    John Howard <******@****.***> 1676588060 -0800
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Feb 16 22:54:20 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/files/profile-openshift.yaml

    # The OpenShift profile provides a basic set of settings to run Istio on OpenShift
    # CNI must be installed.
    cni:
      cniBinDir: /var/lib/cni/bin
      cniConfDir: /etc/cni/multus/net.d
      chained: false
      cniConfFileName: "istio-cni.conf"
      excludeNamespaces:
        - istio-system
        - kube-system
      logLevel: info
      provider: "multus"
    global:
      platform: openshift
    pilot:
      cni:
        enabled: true
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 413 bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-ingress/files/profile-openshift.yaml

    # The original version of this file is located at /manifests/helm-profiles directory.
    # If you want to make a change in this file, edit the original one and run "make gen".
    
    # The OpenShift profile provides a basic set of settings to run Istio on OpenShift
    # CNI must be installed.
    cni:
      cniBinDir: /var/lib/cni/bin
      cniConfDir: /etc/cni/multus/net.d
      chained: false
      cniConfFileName: "istio-cni.conf"
      logLevel: info
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Apr 10 12:37:25 GMT 2024
    - 594 bytes
    - Viewed (0)
  4. manifests/charts/istio-operator/files/profile-openshift.yaml

    # The OpenShift profile provides a basic set of settings to run Istio on OpenShift
    # CNI must be installed.
    cni:
      cniBinDir: /var/lib/cni/bin
      cniConfDir: /etc/cni/multus/net.d
      chained: false
      cniConfFileName: "istio-cni.conf"
      excludeNamespaces:
        - istio-system
        - kube-system
      logLevel: info
      provider: "multus"
    global:
      platform: openshift
    pilot:
      cni:
        enabled: true
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 413 bytes
    - Viewed (0)
  5. cni/README.md

    This component accomplishes that in the following ways:
    
    1. By installing a separate, very basic "CNI plugin" binary onto the node to forward low-level pod lifecycle events (CmdAdd/CmdDel/etc) from whatever node-level CNI subsystem is in use to this node agent for processing via socket.
    1. By running as a node-level daemonset that:
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-ingress/NOTES.txt

    and allows a bit more flexibility.
    - the dedicated pilot-per-ingress is required if the gateway needs to support k8s-style ingress.
    
    # Port and basic host configuration
    
    In order to configure the Service object, the install/upgrade needs to provide a list of all ports.
    In the past, this was done when installing/upgrading full istio, and involved some duplication - ports configured
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Apr 15 21:29:06 GMT 2020
    - 2K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/certificates/v1alpha1/generated.proto

      // bundle, as PEM bundle of PEM-wrapped, DER-formatted X.509 certificates.
      //
      // The data must consist only of PEM certificate blocks that parse as valid
      // X.509 certificates.  Each certificate must include a basic constraints
      // extension with the CA bit set.  The API server will reject objects that
      // contain duplicate certificates, or that use PEM block headers.
      //
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  8. manifests/helm-profiles/openshift.yaml

    # The OpenShift profile provides a basic set of settings to run Istio on OpenShift
    # CNI must be installed.
    cni:
      cniBinDir: /var/lib/cni/bin
      cniConfDir: /etc/cni/multus/net.d
      chained: false
      cniConfFileName: "istio-cni.conf"
      excludeNamespaces:
        - istio-system
        - kube-system
      logLevel: info
      provider: "multus"
    global:
      platform: openshift
    pilot:
      cni:
        enabled: true
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 413 bytes
    - Viewed (0)
  9. cni/pkg/plugin/plugin_dryrun_test.go

    		customUID   *int64
    		customGID   *int64
    		golden      string
    	}{
    		{
    			name:        "basic",
    			annotations: map[string]string{annotation.SidecarStatus.Name: "true"},
    			proxyEnv:    []corev1.EnvVar{},
    			golden:      filepath.Join(env.IstioSrc, "cni/pkg/plugin/testdata/basic.txt.golden"),
    		},
    		{
    			name: "include-exclude-ip",
    			annotations: map[string]string{
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Feb 10 00:31:55 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  10. cni/pkg/install/binaries_test.go

    func TestCopyBinaries(t *testing.T) {
    	cases := []struct {
    		name          string
    		srcFiles      map[string]string
    		existingFiles map[string]string
    		expectedFiles map[string]string
    	}{
    		{
    			name:          "basic",
    			srcFiles:      map[string]string{"istio-cni": "cni111", "istio-iptables": "iptables111"},
    			expectedFiles: map[string]string{"istio-cni": "cni111", "istio-iptables": "iptables111"},
    		},
    		{
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jul 20 18:34:43 GMT 2023
    - 2.3K bytes
    - Viewed (0)
Back to top