Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 159 for registry_ (0.13 sec)

  1. hack/testdata/multi-resource-yaml-modify.yaml

    spec:
      replicas: 1
      selector:
        app: mock
      template:
        metadata:
          labels:
            app: mock
            status: replaced
        spec:
          containers:
          - name: mock-container
            image: registry.k8s.io/pause:3.10
            ports:
            - containerPort: 9949
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 557 bytes
    - Viewed (0)
  2. build/pause/cloudbuild.yaml

        entrypoint: 'bash'
        dir: ./build/pause
        env:
          - DOCKER_CLI_EXPERIMENTAL=enabled
          - REGISTRY=gcr.io/$PROJECT_ID
          - IMAGE=gcr.io/$PROJECT_ID/pause
          - 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. cluster/addons/volumesnapshots/volume-snapshot-controller/volume-snapshot-controller-deployment.yaml

        metadata:
          labels:
            app: volume-snapshot-controller
        spec:
          serviceAccount: volume-snapshot-controller
          containers:
            - name: volume-snapshot-controller
              image: registry.k8s.io/sig-storage/snapshot-controller:v8.0.0
              args:
                - "--v=5"
                - "--metrics-path=/metrics"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:47:15 UTC 2024
    - 758 bytes
    - Viewed (0)
  4. cmd/kubeadm/app/images/images_test.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    )
    
    const (
    	testversion = "v10.1.2-alpha.1.100+0123456789abcdef"
    	expected    = "v10.1.2-alpha.1.100_0123456789abcdef"
    	gcrPrefix   = "registry.k8s.io"
    )
    
    func TestGetGenericImage(t *testing.T) {
    	const (
    		prefix = "foo"
    		image  = "bar"
    		tag    = "baz"
    	)
    	expected := fmt.Sprintf("%s/%s:%s", prefix, image, tag)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 06:33:37 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. pkg/registry/networking/servicecidr/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 657 bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    	DefaultAPIBindPort = 6443
    	// DefaultCertificatesDir defines default certificate directory
    	DefaultCertificatesDir = "/etc/kubernetes/pki"
    	// DefaultImageRepository defines default image registry
    	// (previously this defaulted to k8s.gcr.io)
    	DefaultImageRepository = "registry.k8s.io"
    	// DefaultManifestsDir defines default manifests directory
    	DefaultManifestsDir = "/etc/kubernetes/manifests"
    	// DefaultClusterName defines the default cluster name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. cluster/addons/fluentd-gcp/scaler-deployment.yaml

      template:
        metadata:
          labels:
            k8s-app: fluentd-gcp-scaler
        spec:
          serviceAccountName: fluentd-gcp-scaler
          containers:
          - name: fluentd-gcp-scaler
            image: registry.k8s.io/fluentd-gcp-scaler:0.5.2
            command:
              - /scaler.sh
              - --ds-name=fluentd-gcp-{{ fluentd_gcp_yaml_version }}
              - --scaling-policy=fluentd-gcp-scaling-policy
            env:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 07 17:58:57 UTC 2023
    - 972 bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/options/constant.go

    	IgnorePreflightErrors = "ignore-preflight-errors"
    
    	// ImageRepository sets the container registry to pull control plane images from.
    	ImageRepository = "image-repository"
    
    	// KubeconfigDir flag sets the path where to save the kubeconfig file.
    	KubeconfigDir = "kubeconfig-dir"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. cmd/kubelet/app/options/container_runtime.go

    */
    
    package options
    
    import (
    	"k8s.io/kubernetes/pkg/kubelet/config"
    )
    
    const (
    	// When these values are updated, also update test/utils/image/manifest.go
    	defaultPodSandboxImageName    = "registry.k8s.io/pause"
    	defaultPodSandboxImageVersion = "3.10"
    )
    
    var (
    	defaultPodSandboxImage = defaultPodSandboxImageName +
    		":" + defaultPodSandboxImageVersion
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/examples/multipoint/multipoint.go

    type CommunicatingPlugin struct{}
    
    var _ framework.ReservePlugin = CommunicatingPlugin{}
    var _ framework.PreBindPlugin = CommunicatingPlugin{}
    
    // Name is the name of the plugin used in Registry and configurations.
    const Name = "multipoint-communicating-plugin"
    
    // Name returns name of the plugin. It is used in logs, etc.
    func (mc CommunicatingPlugin) Name() string {
    	return Name
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 03:43:17 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top