Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for thank (0.17 sec)

  1. istioctl/pkg/waypoint/waypoint.go

    				}},
    			},
    		}
    
    		// only label if the user has provided their own value, otherwise we let istiod choose a default at runtime (service)
    		// this will allow for gateway class to provide a default for that class rather than always forcing service or requiring users to configure correctly
    		if trafficType != "" {
    			if !validTrafficTypes.Contains(trafficType) {
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed May 08 19:45:58 GMT 2024
    - 15.5K bytes
    - Viewed (0)
  2. cni/pkg/iptables/iptables.go

    	// -A POSTROUTING -p tcp -j ISTIO_POSTRT
    	iptablesBuilder.AppendRule(
    		iptableslog.UndefinedCommand, iptablesconstants.POSTROUTING, iptablesconstants.NAT,
    		"-j", ChainHostPostrouting,
    	)
    
    	// TODO BML I don't think we need UDP? TCP healthcheck redir should catch everything.
    
    	// This is effectively an analog for Istio's old-style podSpec-based health check rewrites.
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue May 07 19:54:50 GMT 2024
    - 19.7K bytes
    - Viewed (0)
  3. manifests/charts/istio-cni/templates/clusterrole.yaml

    {{- else if .Values.cni.repair.deletePods }}
      - apiGroups: [""]
        resources: ["pods"]
        verbs: ["delete"]
    {{- else if .Values.cni.repair.labelPods }}
      - apiGroups: [""]
        {{- /* pods/status is less privileged than the full pod, and either can label. So use the lower pods/status */}}
        resources: ["pods/status"]
        verbs: ["patch", "update"]
    {{- end }}
    {{- end }}
    ---
    {{- if .Values.cni.ambient.enabled }}
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Sat May 04 01:55:56 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  4. manifests/charts/ztunnel/templates/daemonset.yaml

            hostPath:
              path: /var/run/ztunnel
              type: DirectoryOrCreate # ideally this would be a socket, but ztunnel may not have started yet.
          # pprof needs a writable /tmp, and we don't have that thanks to `readOnlyRootFilesystem: true`, so mount one
          - name: tmp
            emptyDir: {}
          {{- with .Values.volumes }}
            {{- toYaml . | nindent 6}}
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri May 03 19:29:42 GMT 2024
    - 5.2K bytes
    - Viewed (0)
Back to top