Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for Admin (0.19 sec)

  1. istioctl/pkg/admin/admin.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package admin
    
    import (
    	"fmt"
    
    	"github.com/spf13/cobra"
    
    	"istio.io/istio/istioctl/pkg/cli"
    )
    
    func Cmd(ctx cli.Context) *cobra.Command {
    	adminCmd := &cobra.Command{
    		Use:   "admin",
    		Short: "Manage control plane (istiod) configuration",
    		Long:  "A group of commands used to manage istiod configuration",
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  2. istioctl/pkg/util/configdump/cluster.go

    package configdump
    
    import (
    	"sort"
    
    	admin "github.com/envoyproxy/go-control-plane/envoy/admin/v3"
    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    )
    
    // GetDynamicClusterDump retrieves a cluster dump with just dynamic active clusters in it
    func (w *Wrapper) GetDynamicClusterDump(stripVersions bool) (*admin.ClustersConfigDump, error) {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Nov 03 08:41:32 GMT 2022
    - 2.1K bytes
    - Viewed (0)
  3. istioctl/pkg/util/configdump/route.go

    			drc[i].LastUpdated = nil
    		}
    	}
    	return &admin.RoutesConfigDump{DynamicRouteConfigs: drc}, nil
    }
    
    // GetRouteConfigDump retrieves the route config dump from the ConfigDump
    func (w *Wrapper) GetRouteConfigDump() (*admin.RoutesConfigDump, error) {
    	routeDumpAny, err := w.getSection(routes)
    	if err != nil {
    		return nil, err
    	}
    	routeDump := &admin.RoutesConfigDump{}
    	err = routeDumpAny.UnmarshalTo(routeDump)
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Nov 03 08:41:32 GMT 2022
    - 3.2K bytes
    - Viewed (0)
  4. istioctl/pkg/kubeinject/testdata/mesh-config.yaml

      # CAP_NET_ADMIN capability, which is required to use TPROXY.
      #interceptionMode: REDIRECT
      #
      # Port where Envoy listens (on local host) for admin commands
      # You can exec into the istio-proxy container in a pod and
      # curl the admin port (curl http://localhost:15000/) to obtain
      # diagnostic information from Envoy. See
      # https://lyft.github.io/envoy/docs/operations/admin.html
      # for more details
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  5. istioctl/pkg/dashboard/dashboard.go

    		CommandUsage: "proxy [<type>/]<name>[.<namespace>]",
    		CommandShort: "Open admin web UI for a proxy",
    		CommandLong:  `Open the admin dashboard for a proxy, like envoy and ztunnel pods`,
    		CommandExample: `  # Open envoy admin dashboard for the productpage-123-456.default pod
      istioctl dashboard proxy productpage-123-456.default
    
      # Open envoy admin dashboard for one pod under a deployment
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Apr 15 01:29:35 GMT 2024
    - 20.5K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/logging/testdata/logging.txt

    active loggers:
      admin: warning
      aws: warning
      assert: warning
      backtrace: warning
      client: warning
      config: warning
      connection: warning
      dubbo: warning
      file: warning
      filter: warning
      forward_proxy: warning
      grpc: warning
      hc: warning
      health_checker: warning
      http: warning
      http2: warning
      hystrix: warning
      init: warning
      io: warning
      jwt: warning
      kafka: warning
      lua: warning
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Oct 02 13:47:26 GMT 2019
    - 715 bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/files/injection-template.yaml

          privileged: {{ .Values.global.proxy.privileged }}
          capabilities:
        {{- if not (or .Values.pilot.cni.enabled .Values.istio_cni.enabled) }}
            add:
            - NET_ADMIN
            - NET_RAW
        {{- end }}
            drop:
            - ALL
        {{- if not (or .Values.pilot.cni.enabled .Values.istio_cni.enabled) }}
          readOnlyRootFilesystem: false
          runAsGroup: 0
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 23.7K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

          privileged: {{ .Values.global.proxy.privileged }}
          capabilities:
        {{- if not (or .Values.pilot.cni.enabled .Values.istio_cni.enabled) }}
            add:
            - NET_ADMIN
            - NET_RAW
        {{- end }}
            drop:
            - ALL
        {{- if not (or .Values.pilot.cni.enabled .Values.istio_cni.enabled) }}
          readOnlyRootFilesystem: false
          runAsGroup: 0
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 23.7K bytes
    - Viewed (1)
  9. istioctl/pkg/authz/analyzer_test.go

    	tests := []struct {
    		name  string
    		input *envoy_admin.ListenersConfigDump_DynamicListener
    	}{
    		{
    			name: "Test2",
    			input: &envoy_admin.ListenersConfigDump_DynamicListener{
    				Name: "First_Listener",
    				ActiveState: &envoy_admin.ListenersConfigDump_DynamicListenerState{
    					VersionInfo: "version1.5",
    					Listener: &anypb.Any{
    						TypeUrl: "type.googleapis.com/envoy.admin.v3.ListenersConfigDump",
    					},
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sun Apr 21 17:42:54 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/core/v1/generated.proto

      // glusterfs represents a Glusterfs volume that is attached to a host and
      // exposed to the pod. Provisioned by an admin.
      // More info: https://examples.k8s.io/volumes/glusterfs/README.md
      // +optional
      optional GlusterfsPersistentVolumeSource glusterfs = 4;
    
      // nfs represents an NFS mount on the host. Provisioned by an admin.
      // More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
      // +optional
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
Back to top