Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 326 for revision (0.18 sec)

  1. operator/cmd/mesh/install.go

    	revision := iop.Spec.Revision
    	if revision == "" {
    		revision = util.DefaultRevisionName
    	}
    	icps, err := kubeClient.GetIstioVersions(context.TODO(), ns)
    	if err != nil {
    		return err
    	}
    	if len(*icps) != 0 {
    		var icpTags []string
    		var icpTag string
    		// create normalized tags for multiple control plane revisions
    		for _, icp := range *icps {
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu May 02 14:30:43 GMT 2024
    - 15.5K bytes
    - Viewed (1)
  2. istioctl/pkg/tag/tag.go

    	overrideHelpStr = `If true, allow revision tags to be overwritten, otherwise reject revision tag updates that
    overwrite existing revision tags.`
    	revisionHelpStr = "Control plane revision to reference from a given revision tag"
    	tagCreatedStr   = `Revision tag %q created, referencing control plane revision %q. To enable injection using this
    revision tag, use 'kubectl label namespace <NAMESPACE> istio.io/rev=%s'
    `
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 08:32:06 GMT 2024
    - 16.3K bytes
    - Viewed (0)
  3. istioctl/pkg/kubeinject/kubeinject.go

    }
    
    func getMeshConfigFromConfigMap(ctx cli.Context, command, revision string) (*meshconfig.MeshConfig, error) {
    	client, err := ctx.CLIClient()
    	if err != nil {
    		return nil, err
    	}
    
    	if meshConfigMapName == defaultMeshConfigMapName && revision != "" {
    		meshConfigMapName = fmt.Sprintf("%s-%s", defaultMeshConfigMapName, revision)
    	}
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Mar 29 02:29:02 GMT 2024
    - 21.6K bytes
    - Viewed (0)
  4. istioctl/pkg/tag/generate_test.go

    	operatorManaged          = operatorNamespace + "/managed"
    	revisionCanonicalWebhook = admitv1.MutatingWebhookConfiguration{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "istio-sidecar-injector-revision",
    			Labels: map[string]string{
    				label.IoIstioRev.Name: "revision",
    				operatorManaged:       "Reconcile",
    			},
    		},
    		Webhooks: []admitv1.MutatingWebhook{
    			{
    				Name: fmt.Sprintf("namespace.%s", istioInjectionWebhookSuffix),
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Jan 16 17:43:49 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  5. istioctl/pkg/waypoint/waypoint.go

    		},
    	}
    
    	waypointApplyCmd.PersistentFlags().StringVarP(&revision, "revision", "r", "", "The revision to label the waypoint with")
    	waypointApplyCmd.PersistentFlags().BoolVarP(&waitReady, "wait", "w", false, "Wait for the waypoint to be ready")
    	waypointCmd.AddCommand(waypointApplyCmd)
    	waypointGenerateCmd.PersistentFlags().StringVarP(&revision, "revision", "r", "", "The revision to label the waypoint with")
    	waypointCmd.AddCommand(waypointGenerateCmd)
    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)
  6. src/main/java/jcifs/smb/SID.java

                    }
    
                    return sid.revision == this.revision;
                }
            }
            return false;
        }
    
    
        /**
         * Return the numeric representation of this sid such as
         * <tt>S-1-5-21-1496946806-2192648263-3843101252-1029</tt>.
         */
        @Override
        public String toString () {
            String ret = "S-" + ( this.revision & 0xFF ) + "-";
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
  7. istioctl/pkg/injector/injector-list.go

    }
    
    // podCountByRevision() returns a map of revision->pods, with "<non-Istio>" as the dummy "revision" for uninjected pods
    func podCountByRevision(pods []corev1.Pod, expectedRevision string) map[string]revisionCount {
    	retval := map[string]revisionCount{}
    	for _, pod := range pods {
    		revision := extractRevisionFromPod(&pod)
    		revisionLabel := revision
    		if revision == "" {
    			revisionLabel = "<non-Istio>"
    		}
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Jan 04 03:08:06 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  8. istioctl/pkg/admin/istiodconfig.go

    		},
    		RunE: func(logCmd *cobra.Command, args []string) error {
    			client, err := ctx.CLIClientWithRevision(opts.Revision)
    			if err != nil {
    				return fmt.Errorf("failed to create k8s client: %v", err)
    			}
    
    			var podName, ns string
    			if len(args) == 0 {
    				if opts.Revision == "" {
    					opts.Revision = "default"
    				}
    				if len(istiodLabelSelector) > 0 {
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  9. istioctl/pkg/tag/generate.go

    type GenerateOptions struct {
    	// Tag is the name of the revision tag to generate.
    	Tag string
    	// Revision is the revision to associate the revision tag with.
    	Revision string
    	// WebhookName is an override for the mutating webhook name.
    	WebhookName string
    	// ManifestsPath specifies where the manifests to render the mutatingwebhook can be found.
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Jan 16 17:43:49 GMT 2024
    - 13.2K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

            chart: gateways
    {{- end }}
            service.istio.io/canonical-name: {{ $gateway.name }}
            service.istio.io/canonical-revision: {{ index $gateway.labels "app.kubernetes.io/version" | default (index $gateway.labels "version") | default .Values.revision | default "latest" | quote }}
            istio.io/rev: {{ .Values.revision | default "default" | quote }}
            install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 12.1K bytes
    - Viewed (1)
Back to top