Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,670 for mage (0.1 sec)

  1. cmd/kubeadm/app/util/image/image.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package image
    
    import "regexp"
    
    var (
    	// tagMatcher is the regex used to match a tag.
    	// Basically we presume an image can be made of `[domain][:port][path]<name>[:tag][@sha256:digest]`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 19 21:21:34 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/image-auto.yaml

        spec:
          containers:
            - name: istio-proxy
              image: auto
    ---
    # No image auto, should not produce error!
    apiVersion: v1
    kind: Pod
    metadata:
      name: istiod-canary-1234567890-12345
      namespace: istio-system
      labels:
        app: istiod
        istio: pilot
        sidecar.istio.io/inject: "true"
    spec:
      containers:
        - image: ubuntu
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/injection/injection-image.go

    	Tag   string `json:"tag"`
    	Proxy proxy  `json:"proxy"`
    }
    
    type proxy struct {
    	Image string `json:"image"`
    }
    
    // Metadata implements Analyzer.
    func (a *ImageAnalyzer) Metadata() analysis.Metadata {
    	return analysis.Metadata{
    		Name:        "injection.ImageAnalyzer",
    		Description: "Checks the image of auto-injection configured with the running proxies on pods",
    		Inputs: []config.GroupVersionKind{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/hack/build-image.sh

      rm "${KUBE_ROOT}/staging/src/k8s.io/apiextensions-apiserver/artifacts/simple-image/apiextensions-apiserver"
    }
    trap cleanup EXIT
    
    pushd "${KUBE_ROOT}/staging/src/k8s.io/apiextensions-apiserver"
    cp -v ../../../../_output/local/bin/linux/amd64/apiextensions-apiserver ./artifacts/simple-image/apiextensions-apiserver
    docker build -t apiextensions-apiserver:latest ./artifacts/simple-image
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/injection/image-auto.go

    	"istio.io/istio/pkg/config/analysis/msg"
    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/config/schema/gvk"
    )
    
    // ImageAutoAnalyzer reports an error if Pods and Deployments with `image: auto` are not going to be injected.
    type ImageAutoAnalyzer struct{}
    
    var _ analysis.Analyzer = &ImageAutoAnalyzer{}
    
    const (
    	istioProxyContainerName = "istio-proxy"
    	manualInjectionImage    = "auto"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. tools/build-kind-image.sh

    images=()
    for arch in "${__arches__[@]}"; do
        image="${registry}-${arch}"
        kind build node-image --image="${image}" --arch="${arch}" "${kdir}"
        images+=("${image}")
    done
    
    # combine to manifest list tagged with kubernetes version
    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}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 12 17:36:35 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/kube/testdata/proxyless-custom-image.yaml

        spec:
          imagePullSecrets:
          - name: myregistrykey
          containers:
          - name: istio-proxy
            image: auto
            imagePullPolicy: Always
            securityContext: # to allow core dumps
              readOnlyRootFilesystem: false
          - name: app
            image: testing.hub/app:latest
            imagePullPolicy: Always
            args:
              - --metrics=15014
              - --cluster=cluster-0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. releasenotes/notes/proxy-config-image-type.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - https://github.com/istio/istio/issues/38959
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 17 15:01:08 UTC 2022
    - 207 bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/injection-image-distroless-no-meshconfig.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      annotations:
        proxy.istio.io/config: |
          image:
            imageType: distroless
      labels:
        app: details
      name: details-v1-pod-annotation-override
      namespace: annotation-override
    spec:
      containers:
      - image: docker.io/istio/examples-bookinfo-details-v1:1.15.0
        name: details
      - image: docker.io/istio/proxyv2:1.3.1-distroless
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 15:31:54 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/injection-image-distroless.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: details
      name: details-v1-pod-old
      namespace: enabled-namespace
    spec:
      containers:
      - image: docker.io/istio/examples-bookinfo-details-v1:1.15.0
        name: details
      - image: docker.io/istio/proxyv2:1.3.0
        name: istio-proxy
    ---
    # details-v1-pod-new is up-to-date and should not get a warning.
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 02:55:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top