Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 483 for ImagePullPolicy (0.29 sec)

  1. samples/grpc-echo/grpc-echo.yaml

              - name: INSTANCE_IP
                valueFrom:
                  fieldRef:
                    apiVersion: v1
                    fieldPath: status.podIP
              image: gcr.io/istio-testing/app:latest
              imagePullPolicy: Always
              livenessProbe:
                failureThreshold: 10
                initialDelaySeconds: 10
                periodSeconds: 10
                successThreshold: 1
                tcpSocket:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. samples/extauthz/local-ext-authz.yaml

      template:
        metadata:
          labels:
            app: httpbin
            version: v1
        spec:
          serviceAccountName: httpbin
          containers:
          - image: docker.io/kong/httpbin
            imagePullPolicy: IfNotPresent
            name: httpbin
            # Same as found in Dockerfile's CMD but using an unprivileged port
            command:
            - gunicorn
            - -b
            - 0.0.0.0:8080
            - httpbin:app
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 03:54:58 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. samples/ratelimit/rate-limit-service.yaml

    spec:
      replicas: 1
      selector:
        matchLabels:
          app: redis
      template:
        metadata:
          labels:
            app: redis
        spec:
          containers:
          - image: redis:alpine
            imagePullPolicy: IfNotPresent
            name: redis
            ports:
            - name: redis
              containerPort: 6379
          restartPolicy: Always
          serviceAccountName: ""
    ---
    apiVersion: v1
    kind: Service
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/gateway.yaml.injected

            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            proxy.istio.io/overrides: '{"containers":[{"name":"istio-proxy","resources":{},"imagePullPolicy":"IfNotPresent"}]}'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. pkg/registry/core/pod/strategy_test.go

    							Image:                    "image",
    							ImagePullPolicy:          "IfNotPresent",
    							TerminationMessagePolicy: "File",
    						},
    					},
    					EphemeralContainers: []api.EphemeralContainer{
    						{
    							EphemeralContainerCommon: api.EphemeralContainerCommon{
    								Name:                     "debugger",
    								Image:                    "image",
    								ImagePullPolicy:          "IfNotPresent",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/gateway.yaml

          # but will be used when we have a dedicated template to run a pod as a Gateway
          containers:
          - name: istio-proxy
            image: auto
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 17 15:33:57 UTC 2022
    - 574 bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/kube/testdata/multiple-istio-versions-no-proxy.yaml

            prometheus.io/port: "15014"
        spec:
          imagePullSecrets:
          - name: myregistrykey
          containers:
          - name: app
            image: testing.hub/app:latest
            imagePullPolicy: Always
            args:
              - --metrics=15014
              - --cluster=cluster-0
              - --grpc=7070
              - --port=8090
              - --port=8080
              - --port=3333
              - --version=bar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. releasenotes/notes/wasm-cache-with-tag-stripped-url.yaml

        This may increase the chance of cache hit (e.g., trying to find the same image with both of the tagged and digest URLs.)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 23 08:37:23 UTC 2024
    - 402 bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/pod-con-sec-uid.yaml

    spec:
      containers:
      - name: helloworld
        image: docker.io/istio/examples-helloworld-v1
        securityContext:
          runAsUser: 1337
        resources:
          requests:
            cpu: "100m"
        imagePullPolicy: IfNotPresent #Always
        ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 364 bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/pod-sec-uid.yaml

        version: v2
    spec:
      securityContext:
        runAsUser: 1337
      containers:
      - name: helloworld
        image: docker.io/istio/examples-helloworld-v2
        resources:
          requests:
            cpu: "100m"
        imagePullPolicy: IfNotPresent #Always
        ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 361 bytes
    - Viewed (0)
Back to top