Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,160 for Mocker (0.22 sec)

  1. operator/pkg/translate/translate_value_test.go

      autoscaleMin: 1
      cpu:
        targetAverageUtilization: 80
      traceSampling: 1.0
      image: pilot
      env:
        GODEBUG: gctrace=1
    global:
      hub: docker.io/istio
      istioNamespace: istio-system
      tag: 1.2.3
      proxy:
        readinessInitialDelaySeconds: 2
    `,
    			want: `
    hub: docker.io/istio
    tag: 1.2.3
    components:
       pilot:
         enabled: true
         k8s:
           replicaCount: 1
           env:
           - name: GODEBUG
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. build/pause/cloudbuild.yaml

          - HOME=/root
        args:
          - '-c'
          - |
            gcloud auth configure-docker \
            && docker buildx create --name img-builder --use \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 20:51:40 UTC 2024
    - 655 bytes
    - Viewed (0)
  3. pkg/credentialprovider/plugin/plugin_test.go

    			t.Parallel()
    			dockerconfig := testcase.pluginProvider.Provide(testcase.image)
    			if !reflect.DeepEqual(dockerconfig, testcase.dockerconfig) {
    				t.Logf("actual docker config: %v", dockerconfig)
    				t.Logf("expected docker config: %v", testcase.dockerconfig)
    				t.Error("unexpected docker config")
    			}
    		})
    	}
    }
    
    // This test calls Provide in parallel for different registries and images
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 09 06:11:06 UTC 2022
    - 26.5K bytes
    - Viewed (0)
  4. tools/build-kind-image.sh

    export DOCKER_CLI_EXPERIMENTAL=enabled
    # images must be pushed to be referenced by docker manifest
    # we push only after all builds have succeeded
    for image in "${images[@]}"; do
        docker push "${image}"
    done
    docker manifest rm "${registry}" || true
    docker manifest create "${registry}" "${images[@]}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 12 17:36:35 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. Dockerfile

    FROM minio/minio:latest
    
    COPY ./minio /usr/bin/minio
    COPY dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
    
    ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
    
    VOLUME ["/data"]
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Oct 28 19:19:49 UTC 2023
    - 202 bytes
    - Viewed (0)
  6. tests/testdata/config/byon.yaml

      http:
        - route:
          - destination:
              host: byon.test.istio.io
    
    ---
    ## VM running docker ( see deb/run/docker )
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: byon-docker
      namespace: testns
    spec:
       hosts:
       - byon-docker.test.istio.io
       ports:
       - number: 7072
         name: http
         protocol: HTTP
       resolution: STATIC
       endpoints:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  7. samples/builder/README.md

    # Sample builder
    
    This folder contains docker image building logic for various samples, to consolidate things.
    Note some images still user per-folder config, so this is not complete.
    
    ## Building for testing
    
    To build all images and push them:
    
    ```bash
    docker buildx bake --push
    ```
    
    This will push to `localhost:5000` by default, which you can override with `HUB=localhost:5000`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 928 bytes
    - Viewed (0)
  8. istioctl/pkg/kubeinject/testdata/inject-config-iop.yaml

    templates:
      sidecar: |-
        spec:
          initContainers:
          - name: istio-init
            image: docker.io/istio/proxy_init:unittest-{{.Values.global.tag}}
          containers:
          - name: istio-proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 252 bytes
    - Viewed (0)
  9. cluster/images/kubemark/Makefile

    REGISTRY := $(if $(REGISTRY),$(REGISTRY),staging-k8s.gcr.io)
    IMAGE_TAG := $(if $(IMAGE_TAG),$(IMAGE_TAG),latest)
    
    all: gcloudpush
    
    build:
    	docker build --pull -t $(REGISTRY)/kubemark:$(IMAGE_TAG) .
    
    gcloudpush: build
    	docker push $(REGISTRY)/kubemark:$(IMAGE_TAG)
    
    push: build
    	docker push $(REGISTRY)/kubemark:$(IMAGE_TAG)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 27 13:57:53 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  10. pilot/pkg/xds/ecds_test.go

    	defaultPullSecret = makeDockerCredentials("default-pull-secret", "default", map[string]string{
    		corev1.DockerConfigJsonKey: "default-docker-credential",
    	}, corev1.SecretTypeDockerConfigJson)
    	rootPullSecret = makeDockerCredentials("root-pull-secret", "istio-system", map[string]string{
    		corev1.DockerConfigJsonKey: "root-docker-credential",
    	}, corev1.SecretTypeDockerConfigJson)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top