Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 117 for master (0.24 sec)

  1. common/config/license-lint.yml

    # MIT: https://github.com/ghodss/yaml/blob/master/LICENSE
    - github.com/ghodss/yaml
    
    # BSD: https://github.com/gogo/protobuf/blob/master/LICENSE
    - github.com/gogo/protobuf
    
    # BSD: https://github.com/magiconair/properties/blob/master/LICENSE.md
    - github.com/magiconair/properties
    
    # Apache 2.0
    - github.com/spf13/cobra
    - github.com/spf13/afero
    
    # Public domain: https://github.com/xi2/xz/blob/master/LICENSE
    - github.com/xi2/xz
    
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 25 19:26:20 GMT 2023
    - 3.2K bytes
    - Viewed (1)
  2. common/Makefile.common.mk

    dump-licenses-csv: mod-download-go
    	@license-lint --config common/config/license-lint.yml --csv
    
    mirror-licenses: mod-download-go
    	@rm -fr licenses
    	@license-lint --mirror
    
    TMP := $(shell mktemp -d -u)
    UPDATE_BRANCH ?= "master"
    
    BUILD_TOOLS_ORG ?= "istio"
    
    update-common:
    	@mkdir -p $(TMP)
    	@git clone -q --depth 1 --single-branch --branch $(UPDATE_BRANCH) https://github.com/$(BUILD_TOOLS_ORG)/common-files $(TMP)/common-files
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Mar 02 20:07:36 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  3. manifests/charts/README.md

                --set global.istioNamespace=istio-system
    
    # Second istio-discovery, using master version of istio
    TAG=latest HUB=gcr.io/istio-testing iop istio-master istio-discovery-master $IBASE/istio-control/istio-discovery \
                --set policy.enable=false \
                --set global.istioNamespace=istio-master
    ```
    
    ### Gateways
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Feb 07 17:53:24 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  4. CONTRIBUTING.md

    # Contribution guidelines
    
    So you want to hack on Istio? Yay! Please refer to Istio's overall
    [contribution guidelines](https://github.com/istio/community/blob/master/CONTRIBUTING.md)
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Nov 27 20:58:34 GMT 2017
    - 214 bytes
    - Viewed (0)
  5. operator/README.md

    ## Introduction
    
    The operator uses the [IstioOperator API](https://github.com/istio/api/blob/master/operator/v1alpha1/operator.proto), which has
    three main components:
    
    - [MeshConfig](https://github.com/istio/api/blob/master/mesh/v1alpha1/config.proto) for runtime config consumed directly by Istio
    control plane components.
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sun Sep 17 08:27:52 GMT 2023
    - 17.5K bytes
    - Viewed (0)
  6. manifests/charts/UPDATING-CHARTS.md

    To avoid this, the project attempts to minimize additions to the `values.yaml` API where possible.
    
    If the change is a dynamic runtime configuration, it probably belongs in the [MeshConfig API](https://github.com/istio/api/blob/master/mesh/v1alpha1/config.proto).
    This allows configuration without re-installing or restarting deployments.
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jul 27 18:28:55 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  7. manifests/charts/istio-operator/Chart.yaml

    version: 1.0.0
    appVersion: 1.0.0
    tillerVersion: ">=2.7.2"
    description: Helm chart for deploying Istio operator
    keywords:
      - istio
      - operator
    sources:
      - https://github.com/istio/istio/tree/master/operator
    engine: gotpl
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Sep 17 22:57:14 GMT 2021
    - 443 bytes
    - Viewed (0)
  8. .devcontainer/devcontainer.json

    {
      "name": "istio build-tools",
      "image": "gcr.io/istio-testing/build-tools:master-8fb9ce88f6ad4cdd35c1660cd0ad0ab67eff4c6c",
      "privileged": true,
      "remoteEnv": {
        "USE_GKE_GCLOUD_AUTH_PLUGIN": "True",
        "BUILD_WITH_CONTAINER": "0",
        "CARGO_HOME": "/home/.cargo",
        "RUSTUP_HOME": "/home/.rustup"
      },
      "features": {
        "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {},
        "ghcr.io/mpriscella/features/kind:1": {}
      },
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 23 19:52:28 GMT 2024
    - 879 bytes
    - Viewed (1)
  9. bin/update_ztunnel.sh

    # 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.
    
    set -e
    
    UPDATE_BRANCH=${UPDATE_BRANCH:-"master"}
    
    SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
    ROOTDIR=$(dirname "${SCRIPTPATH}")
    cd "${ROOTDIR}"
    
    # Get the sha of top commit
    # $1 = repo
    function getSha() {
      local dir result
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 11 17:50:01 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  10. .github/pull_request_template.md

    - [ ] Test and Release
    - [ ] User Experience
    - [ ] Developer Infrastructure
    
    **Please check any characteristics that apply to this pull request.**
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Aug 25 14:29:43 GMT 2023
    - 718 bytes
    - Viewed (0)
Back to top