Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,558 for Patches (0.12 sec)

  1. src/cmd/vendor/golang.org/x/term/README.md

    ## Download/Install
    
    The easiest way to install is to run `go get -u golang.org/x/term`. You can
    also manually git clone the repository to `$GOPATH/src/golang.org/x/term`.
    
    ## Report Issues / Send Patches
    
    This repository uses Gerrit for code changes. To learn how to submit changes to
    this repository, see https://golang.org/doc/contribute.html.
    
    The main issue tracker for the term repository is located at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 727 bytes
    - Viewed (0)
  2. tests/integration/security/external_ca/main_test.go

          overlays:
            # Amend ClusterRole to add permission for istiod to approve certificate signing by custom signer
            - kind: ClusterRole
              name: istiod-clusterrole-istio-system
              patches:
                - path: rules[-1]
                  value: |
                    apiGroups:
                    - certificates.k8s.io
                    resourceNames:
                    - clusterissuers.istio.io/*
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 22 14:18:21 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. tests/integration/iop-externalistiod-primary-integration-test-defaults.yaml

              type: LoadBalancer
              ports:
              - port: 15017
                name: tcp-webhook-testing
                protocol: TCP
            overlays:
            - kind: Deployment
              name: istiod
              patches:
              - path: spec.template.spec.volumes[100]
                value: |-
                  name: config-volume
                  configMap:
                    name: istio
              - path: spec.template.spec.volumes[100]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 05 22:06:57 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. tests/integration/security/file_mounted_certs/main_test.go

    components:
      egressGateways:
      - enabled: true
        name: istio-egressgateway
        k8s:
          overlays:
            - kind: Deployment
              name: istio-egressgateway
              patches:
                - path: spec.template.spec.volumes[100]
                  value: |-
                    name: server-certs
                    secret:
                      secretName: ` + PilotSecretName + `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/input/gateways.yaml

                # Port 5353 is forwarded to kube-dns
                - port: 5353
                  name: tcp-dns
              overlays:
                - kind: Deployment
                  name: ilb-gateway
                  patches:
                    - path: spec.template.spec.containers.[name:istio-proxy].env.[name:PILOT_CERT_PROVIDER].value
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/staticpod/utils.go

    	if err != nil {
    		return pod, errors.Wrapf(err, "failed to marshal Pod manifest to YAML")
    	}
    
    	patchManager, err := patches.GetPatchManagerForPath(patchesDir, patches.KnownTargets(), output)
    	if err != nil {
    		return pod, err
    	}
    
    	patchTarget := &patches.PatchTarget{
    		Name:                      pod.Name,
    		StrategicMergePatchObject: v1.Pod{},
    		Data:                      podYAML,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/CONTRIBUTING.md

    if you've tripped over a bug.
    
    ## Contributing code
    
    Please read the
    [Contribution Guidelines](https://golang.org/doc/contribute.html) before sending
    patches.
    
    Unless otherwise noted, the Go source files are distributed under the BSD-style
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 913 bytes
    - Viewed (0)
  8. ci/official/containers/linux_arm64/builder.devtoolset/rpm-patch.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    #
    # Given an RPM spec file $1, apply its patches.
    
    SPEC="$1"
    grep '%patch' "${SPEC}" |while read cmd ; do
      N=$(echo "${cmd}" |sed 's,%patch\([0-9]\+\).*,\1,')
      file=$(grep "Patch$N:" "${SPEC}" |sed 's,.*: ,,')
      parg=$(echo "${cmd}" |sed 's,.*\(-p[0-9]\).*,\1,')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/term/CONTRIBUTING.md

    The gophers there will answer or ask you to file an issue if you've tripped over a bug.
    
    ## Contributing code
    
    Please read the [Contribution Guidelines](https://golang.org/doc/contribute.html)
    before sending patches.
    
    Unless otherwise noted, the Go source files are distributed under
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 913 bytes
    - Viewed (0)
  10. samples/security/spire/istio-spire-config.yaml

            label:
              istio: ingressgateway
            k8s:
              overlays:
                - apiVersion: apps/v1
                  kind: Deployment
                  name: istio-ingressgateway
                  patches:
                    - path: spec.template.spec.volumes.[name:workload-socket]
                      value:
                        name: workload-socket
                        csi:
                          driver: "csi.spiffe.io"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top