Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for rev (0.27 sec)

  1. pkg/revisions/tag_watcher.go

    		func(o *admissionregistrationv1.MutatingWebhookConfiguration) []string {
    			rev := o.GetLabels()[label.IoIstioRev.Name]
    			if rev == "" {
    				return nil
    			}
    			return []string{rev}
    		}, controllers.ObjectHandler(p.queue.AddObject))
    	return p
    }
    
    func (p *tagWatcher) Run(stopCh <-chan struct{}) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    		},
    		{
    			name:        "rev resolve to 0 if not recursive",
    			rv:          "200",
    			limit:       1,
    			expectedRev: 0,
    		},
    		{
    			name:        "rev resolve to 0 if limit unspecified",
    			rv:          "200",
    			recursive:   true,
    			expectedRev: 0,
    		},
    		{
    			name:        "specified rev if recursive with limit",
    			rv:          "200",
    			recursive:   true,
    			limit:       1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. manifests/charts/gateway/templates/_helpers.tpl

    https://istio.io/latest/docs/setup/additional-setup/sidecar-injection/#controlling-the-injection-policy
    */}}
    {{- define "gateway.sidecarInjectionLabels" -}}
    sidecar.istio.io/inject: "true"
    {{- with .Values.revision }}
    istio.io/rev: {{ . | quote }}
    {{- end }}
    {{- end }}
    
    {{- define "gateway.serviceAccountName" -}}
    {{- if .Values.serviceAccount.create }}
    {{- .Values.serviceAccount.name | default (include "gateway.name" .)    }}
    {{- else }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. prow/release-commit.sh

    BUILDER_SHA=159efd4a18a7325192c4f7cb0acbe5648bfb8658
    
    # Reference to the next minor version of Istio
    # This will create a version like 1.4-alpha.sha
    NEXT_VERSION=$(cat "${ROOT}/VERSION")
    TAG=$(git rev-parse HEAD)
    VERSION="${NEXT_VERSION}-alpha.${TAG}"
    
    # In CI we want to store the outputs to artifacts, which will preserve the build
    # If not specified, we can just create a temporary directory
    WORK_DIR="$(mktemp -d)/build"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. Makefile

    hotfix-vars:
    	$(eval LDFLAGS := $(shell MINIO_RELEASE="RELEASE" MINIO_HOTFIX="hotfix.$(shell git rev-parse --short HEAD)" go run buildscripts/gen-ldflags.go $(shell git describe --tags --abbrev=0 | \
        sed 's#RELEASE\.\([0-9]\+\)-\([0-9]\+\)-\([0-9]\+\)T\([0-9]\+\)-\([0-9]\+\)-\([0-9]\+\)Z#\1-\2-\3T\4:\5:\6Z#')))
    	$(eval VERSION := $(shell git describe --tags --abbrev=0).hotfix.$(shell git rev-parse --short HEAD))
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/options.go

    	JwtRule      = env.Register("JWT_RULE", "",
    		"The JWT rule used by istiod authentication").Get()
    )
    
    // Revision is the value of the Istio control plane revision, e.g. "canary",
    // and is the value used by the "istio.io/rev" label.
    var Revision = env.Register("REVISION", "", "").Get()
    
    // NewPilotArgs constructs pilotArgs with default values.
    func NewPilotArgs(initFuncs ...func(*PilotArgs)) *PilotArgs {
    	p := &PilotArgs{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. common/Makefile.common.mk

    BUILD_TOOLS_ORG ?= "istio"
    
    update-common:
    	@mkdir -p $(TMP)
    	@git clone -q --depth 1 --single-branch --branch $(UPDATE_BRANCH) https://github.com/$(BUILD_TOOLS_ORG)/common-files $(TMP)/common-files
    	@cd $(TMP)/common-files ; git rev-parse HEAD >files/common/.commonfiles.sha
    	@rm -fr common
    # istio/community has its own CONTRIBUTING.md file.
    	@CONTRIB_OVERRIDE=$(shell grep -l "istio/community/blob/master/CONTRIBUTING.md" CONTRIBUTING.md)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	w.resourceVersion = version
    	if w.onReplace != nil {
    		w.onReplace()
    	}
    	w.cond.Broadcast()
    
    	metrics.RecordResourceVersion(w.groupResource.String(), version)
    	klog.V(3).Infof("Replaced watchCache (rev: %v) ", resourceVersion)
    	return nil
    }
    
    func (w *watchCache) SetOnReplace(onReplace func()) {
    	w.Lock()
    	defer w.Unlock()
    	w.onReplace = onReplace
    }
    
    func (w *watchCache) Resync() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	defer destroyFunc()
    
    	obj, err := registry.Create(ctx, fooPod, rest.ValidateAllObjectFunc, &metav1.CreateOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	versioner := storage.APIObjectVersioner{}
    	rev, err := versioner.ObjectResourceVersion(obj)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	waitListCh := make(chan runtime.Object, 1)
    	go func(listRev uint64) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
Back to top