Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,456 for layers (0.14 sec)

  1. releasenotes/notes/gw-allow-labels.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 41057
      - 43585
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 06 16:57:46 UTC 2023
    - 204 bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/deployment/infrastructure-labels-annotations.yaml

              medium: Memory
            name: istio-envoy
          - emptyDir: {}
            name: istio-data
          - downwardAPI:
              items:
              - fieldRef:
                  fieldPath: metadata.labels
                path: labels
              - fieldRef:
                  fieldPath: metadata.annotations
                path: annotations
            name: istio-podinfo
          - name: istio-token
            projected:
              sources:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/labels.go

    hangaoshuai <******@****.***> 1518001745 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 11:09:05 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  4. releasenotes/notes/cluster-labels-prometheus.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
      - 30036
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 282 bytes
    - Viewed (0)
  5. pkg/test/framework/label/labels.go

    John Howard <******@****.***> 1637255285 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 18 17:08:05 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  6. releasenotes/notes/otel-builtin-labels.yaml

    zirain <******@****.***> 1718030161 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 151 bytes
    - Viewed (0)
  7. releasenotes/notes/fix-workload-group-labels.yaml

    Douglas Reid <******@****.***> 1633375461 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 04 19:24:21 UTC 2021
    - 184 bytes
    - Viewed (0)
  8. tools/docker-builder/builder/crane.go

    			cfg.Cmd = args.Cmd
    			cfg.Entrypoint = nil
    		}
    		if args.WorkDir != "" {
    			cfg.WorkingDir = args.WorkDir
    		}
    		if len(args.Labels) > 0 && cfg.Labels == nil {
    			cfg.Labels = map[string]string{}
    		}
    		for k, v := range args.Labels {
    			cfg.Labels[k] = v
    		}
    
    		updated, err := mutate.Config(baseImage, cfg)
    		if err != nil {
    			return err
    		}
    		trace("config")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. tools/docker-builder/dockerfile/parse.go

    			}
    		default:
    			log.Warnf("did not handle %+v", c)
    		}
    		log.Debugf("%v: %+v", filepath.Base(c.Original), s)
    	}
    	return builder.Args{
    		Env:        s.env,
    		Labels:     s.labels,
    		Cmd:        s.cmd,
    		User:       s.user,
    		WorkDir:    s.workdir,
    		Entrypoint: s.entrypoint,
    		Base:       s.base,
    		FilesBase:  o.baseDir,
    		Files:      s.copies,
    	}, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. tools/docker-builder/crane.go

    // the configured base image, and add a new layer for all the copies. This layer is constructed in a
    // highly optimized manner - rather than copying things around from original source, to docker
    // staging folder, to docker context, to a tar file, etc, we directly read the original source files
    // into memory and stream them into an in memory tar buffer.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top