Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 605 for revision2 (0.13 sec)

  1. operator/cmd/mesh/operator-init.go

    		Args:  cobra.ExactArgs(0),
    		PreRunE: func(cmd *cobra.Command, args []string) error {
    			if !labels.IsDNS1123Label(oiArgs.common.revision) && cmd.PersistentFlags().Changed("revision") {
    				return fmt.Errorf("invalid revision specified: %v", oiArgs.common.revision)
    			}
    			return nil
    		},
    		RunE: func(cmd *cobra.Command, args []string) error {
    			client, err := ctx.CLIClient()
    			if err != nil {
    				return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. tests/integration/operator/switch_cr_test.go

    	istioCtl istioctl.Instance, profileName string, revision string,
    ) {
    	scopes.Framework.Infof(fmt.Sprintf("=== install istio with profile: %s===\n", profileName))
    	metadataYAML := `
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: %s
      namespace: istio-system
    spec:
    `
    	if revision != "" {
    		metadataYAML += "  revision: " + revision + "\n"
    	}
    
    	metadataYAML += `
      profile: %s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/templates/configmap-jwks.yaml

    {{- if .Values.pilot.jwksResolverExtraRootCA }}
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: pilot-jwks-extra-cacerts{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Release.Namespace }}
      labels:
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 557 bytes
    - Viewed (0)
  4. istioctl/pkg/workload/workload.go

    func IstiodHost(ns string, revision string) string {
    	istiod := "istiod"
    	if isRevisioned(revision) {
    		istiod = fmt.Sprintf("%s-%s", istiod, revision)
    	}
    	return fmt.Sprintf("%s.%s.svc", istiod, ns)
    }
    
    func IstiodAddr(ns, revision string) string {
    	// TODO make port configurable
    	return fmt.Sprintf("%s:%d", IstiodHost(ns, revision), 15012)
    }
    
    // Returns a map with each k,v entry on a new line
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/version_buildvcs_git.txt

    stdout '^\tbuild\tvcs=git$'
    stdout '^\tbuild\tvcs.modified=true$'
    ! stdout vcs.revision
    ! stdout vcs.time
    rm $GOBIN/a$GOEXE
    
    # Revision and commit time are tagged for repositories with commits.
    exec git add -A
    exec git commit -m 'initial commit'
    go install
    go version -m $GOBIN/a$GOEXE
    stdout '^\tbuild\tvcs.revision='
    stdout '^\tbuild\tvcs.time='
    stdout '^\tbuild\tvcs.modified=false$'
    rm $GOBIN/a$GOEXE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. hack/apidiff.sh

    # issues.
    
    usage () {
      cat <<EOF >&2
    Usage: $0 [-r <revision>] [directory ...]"
       -t <revision>: Report changes in code up to and including this revision.
                      Default is the current working tree instead of a revision.
       -r <revision>: Report change in code added since this revision. Default is
                      the common base of origin/master and HEAD.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:00:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/PluginManagementDslSpec.groovy

                            url "http://repo.internal.net/ivy"
                            patternLayout {
                                ivy '[organisation]/[module]/[revision]/[module]-[revision].ivy'
                                artifact '[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]'
                                m2compatible true
                            }
                        }
                        ivy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. pkg/volume/git_repo/git_repo.go

    	if err := validateNonFlagArgument(src.Repository, "repository"); err != nil {
    		return err
    	}
    	if err := validateNonFlagArgument(src.Revision, "revision"); err != nil {
    		return err
    	}
    	if err := validateNonFlagArgument(src.Directory, "directory"); err != nil {
    		return err
    	}
    	if (src.Revision != "") && (src.Directory != "") {
    		cleanedDir := filepath.Clean(src.Directory)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. 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)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  10. manifests/charts/default/templates/validatingwebhook.yaml

          {{- if .Values.base.validationURL }}
          url: {{ .Values.base.validationURL }}
          {{- else }}
          service:
            name: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
            namespace: {{ .Values.global.istioNamespace }}
            path: "/validate"
          {{- end }}
        rules:
          - operations:
              - CREATE
              - UPDATE
            apiGroups:
              - security.istio.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top