Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 674 for mydeployment (0.19 sec)

  1. pkg/registry/authorization/util/helpers_test.go

    						Namespace:   "myns",
    						Verb:        "create",
    						Group:       "extensions",
    						Version:     "v1beta1",
    						Resource:    "deployments",
    						Subresource: "scale",
    						Name:        "mydeployment",
    					},
    				},
    			},
    			want: authorizer.AttributesRecord{
    				User: &user.DefaultInfo{
    					Name: "bob",
    				},
    				APIGroup:        "extensions",
    				APIVersion:      "v1beta1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 16:06:18 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. pkg/registry/authorization/subjectaccessreview/rest_test.go

    					Namespace:   "myns",
    					Verb:        "create",
    					Group:       "extensions",
    					Version:     "v1beta1",
    					Resource:    "deployments",
    					Subresource: "scale",
    					Name:        "mydeployment",
    				},
    			},
    			decision: authorizer.DecisionNoOpinion,
    			reason:   "myreason",
    			err:      errors.New("myerror"),
    			expectedAttrs: authorizer.AttributesRecord{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 16:06:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/deployment/internal/Deployment.java

     * limitations under the License.
     */
    
    package org.gradle.deployment.internal;
    
    import org.gradle.internal.HasInternalProtocol;
    
    import javax.annotation.Nullable;
    
    /**
     * A deployed application.
     *
     * @since 4.2
     */
    @HasInternalProtocol
    public interface Deployment {
        /**
         * Returns the latest status for this deployment.
         *
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 18:00:07 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  4. hack/testdata/kustomize/deployment.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: the-deployment
      labels:
        deployment: hello
    spec:
      replicas: 3
      selector:
        matchLabels:
          deployment: hello
      template:
        metadata:
          labels:
            deployment: hello
        spec:
          containers:
          - name: the-container
            image: monopole/hello:1
            command: ["/hello",
                      "--port=8080",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:31:03 UTC 2019
    - 782 bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/artifacts/kustomization/deployment.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: the-deployment
    spec:
      replicas: 3
      template:
        metadata:
          labels:
            deployment: hello
        spec:
          containers:
          - name: the-container
            image: monopole/hello:1
            command: ["/hello",
                      "--port=8080",
                      "--enableRiskyFeature=$(ENABLE_RISKY)"]
            ports:
            - containerPort: 8080
            env:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:29:27 UTC 2019
    - 697 bytes
    - Viewed (0)
  6. hack/testdata/diff/deployment.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: test
    spec:
      replicas: 3
      selector:
        matchLabels:
          name: test
      template:
        metadata:
          labels:
            name: test
        spec:
          containers:
          - name: nginx
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 11 17:19:52 UTC 2018
    - 254 bytes
    - Viewed (0)
  7. helm/minio/templates/deployment.yaml

    {{- if eq .Values.mode "standalone" }}
    {{ $scheme := .Values.tls.enabled | ternary "https" "http" }}
    {{ $bucketRoot := or ($.Values.bucketRoot) ($.Values.mountPath) }}
    apiVersion: {{ template "minio.deployment.apiVersion" . }}
    kind: Deployment
    metadata:
      name: {{ template "minio.fullname" . }}
      labels:
        app: {{ template "minio.name" . }}
        chart: {{ template "minio.chart" . }}
        release: {{ .Release.Name }}
        heritage: {{ .Release.Service }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 03 17:50:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. manifests/charts/istio-operator/templates/deployment.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      namespace: {{.Release.Namespace}}
      name: istio-operator{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
    spec:
      replicas: 1
      revisionHistoryLimit: {{ .Values.deploymentHistory }}
      selector:
        matchLabels:
          name: istio-operator
      template:
        metadata:
          labels:
            name: istio-operator
            {{- range $key, $val := .Values.podLabels }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 19:10:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. hack/testdata/deployment-multicontainer.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: nginx-deployment
      labels:
        name: nginx-deployment
    spec:
      replicas: 3
      selector:
        matchLabels:
          name: nginx
      template:
        metadata:
          labels:
            name: nginx
        spec:
          containers:
          - name: nginx
            image: registry.k8s.io/nginx:test-cmd
            ports:
            - containerPort: 80
          - name: perl
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 428 bytes
    - Viewed (0)
  10. manifests/charts/gateway/templates/deployment.yaml

    apiVersion: apps/v1
    kind: {{ .Values.kind | default "Deployment" }}
    metadata:
      name: {{ include "gateway.name" . }}
      namespace: {{ .Release.Namespace }}
      labels:
        {{- include "gateway.labels" . | nindent 4}}
      annotations:
        {{- .Values.annotations | toYaml | nindent 4 }}
    spec:
      {{- if not .Values.autoscaling.enabled }}
      {{- with .Values.replicaCount }}
      replicas: {{ . }}
      {{- end }}
      {{- end }}
      selector:
        matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top