Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 301 for apps (0.23 sec)

  1. CHANGELOG/CHANGELOG-1.27.md

    - Fixed the issue where pod with ordinal number lower than the rolling partitioning number was being deleted it was coming up with updated image. ([#120731](https://github.com/kubernetes/kubernetes/pull/120731), [@adilGhaffarDev](https://github.com/adilGhaffarDev)) [SIG Apps and Testing]
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Tue Apr 16 15:20:21 GMT 2024
    - 434.3K bytes
    - Viewed (1)
  2. manifests/charts/gateways/istio-ingress/templates/autoscale.yaml

        operator.istio.io/component: "IngressGateways"
    spec:
      maxReplicas: {{ $gateway.autoscaleMax }}
      minReplicas: {{ $gateway.autoscaleMin }}
      scaleTargetRef:
        apiVersion: apps/v1
        kind: Deployment
        name: {{ $gateway.name }}
      metrics:
      - type: Resource
        resource:
          name: cpu
          target:
            type: Utilization
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 951 bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-egress/templates/autoscale.yaml

        operator.istio.io/component: "EgressGateways"
    spec:
      maxReplicas: {{ $gateway.autoscaleMax }}
      minReplicas: {{ $gateway.autoscaleMin }}
      scaleTargetRef:
        apiVersion: apps/v1
        kind: Deployment
        name: {{ $gateway.name }}
      metrics:
      - type: Resource
        resource:
          name: cpu
          target:
            type: Utilization
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 949 bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.28.md

    - Fixed the issue where pod with ordinal number lower than the rolling partitioning number was being deleted it was coming up with updated image. ([#120731](https://github.com/kubernetes/kubernetes/pull/120731), [@adilGhaffarDev](https://github.com/adilGhaffarDev)) [SIG Apps and Testing]
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Tue Apr 16 20:44:48 GMT 2024
    - 385.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.29.md

    - Statefulset should wait for new replicas in tests when removing .start.ordinal ([#119761](https://github.com/kubernetes/kubernetes/pull/119761), [@soltysh](https://github.com/soltysh)) [SIG Apps and Testing]
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Tue Apr 16 21:41:06 GMT 2024
    - 299.9K bytes
    - Viewed (1)
  6. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

                    fieldPath: spec.serviceAccountName
              - name: ISTIO_META_WORKLOAD_NAME
                value: {{ $gateway.name }}
              - name: ISTIO_META_OWNER
                value: kubernetes://apis/apps/v1/namespaces/{{ .Release.Namespace }}/deployments/{{ $gateway.name }}
              {{- if $.Values.global.meshID }}
              - name: ISTIO_META_MESH_ID
                value: "{{ $.Values.global.meshID }}"
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 12.1K bytes
    - Viewed (1)
  7. 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:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  8. docs/en/docs/release-notes.md

    * ⬆ Bump pypa/gh-action-pypi-publish from 1.8.11 to 1.8.14. PR [#11318](https://github.com/tiangolo/fastapi/pull/11318) by [@dependabot[bot]](https://github.com/apps/dependabot).
    * ⬆ Bump pillow from 10.1.0 to 10.2.0. PR [#11011](https://github.com/tiangolo/fastapi/pull/11011) by [@dependabot[bot]](https://github.com/apps/dependabot).
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Apr 28 00:28:00 GMT 2024
    - 385.5K bytes
    - Viewed (1)
  9. manifests/charts/gateways/istio-egress/templates/deployment.yaml

                    fieldPath: spec.serviceAccountName
              - name: ISTIO_META_WORKLOAD_NAME
                value: {{ $gateway.name }}
              - name: ISTIO_META_OWNER
                value: kubernetes://apis/apps/v1/namespaces/{{ .Release.Namespace }}/deployments/{{ $gateway.name }}
              {{- if $.Values.global.meshID }}
              - name: ISTIO_META_MESH_ID
                value: "{{ $.Values.global.meshID }}"
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  10. cmd/sts-handlers_test.go

    				ClientSecret: "minio-client-app-secret",
    				ProviderURL:  openIDServer,
    				RedirectURL:  "http://127.0.0.1:10000/oauth_callback",
    			})
    			m[testRoleARNs[len(apps)-1]] = apps[len(apps)-1]
    		}
    
    		openIDServer2 := os.Getenv(EnvTestOpenIDServer2)
    		if openIDServer2 != "" {
    			apps = append(apps, OpenIDClientAppParams{
    				ClientID:     "minio-client-app-2",
    				ClientSecret: "minio-client-app-secret-2",
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 18 19:09:19 GMT 2024
    - 84.7K bytes
    - Viewed (0)
Back to top