Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 209 for github (0.2 sec)

  1. bin/update_crds.sh

      GATEWAY_VERSION=$(curl -s -L -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" "https://api.github.com/repos/kubernetes-sigs/gateway-api/commits/${SHORT_SHA}" | jq -r .sha)
    fi
    if [ -z "${GATEWAY_VERSION}" ]; then
      fail "Unable to retrieve the gateway-api version from go.mod file. Not updating the CRD file.";
    fi
    
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 14:28:27 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  2. istioctl/pkg/util/configdump/cluster.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package configdump
    
    import (
    	"sort"
    
    	admin "github.com/envoyproxy/go-control-plane/envoy/admin/v3"
    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    )
    
    // GetDynamicClusterDump retrieves a cluster dump with just dynamic active clusters in it
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Nov 03 08:41:32 GMT 2022
    - 2.1K bytes
    - Viewed (0)
  3. common/scripts/tracing.sh

    #!/bin/bash
    
    # WARNING: DO NOT EDIT, THIS FILE IS PROBABLY A COPY
    #
    # The original version of this file is located in the https://github.com/istio/common-files repo.
    # If you're looking at this file in a different repo and want to make a change, please go to the
    # common-files repo, make the change there and check it in. Then come back to this repo and run
    # "make update-common".
    
    # Copyright Istio Authors
    #
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jul 28 15:25:47 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  4. istioctl/pkg/util/configdump/route.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package configdump
    
    import (
    	"sort"
    	"time"
    
    	admin "github.com/envoyproxy/go-control-plane/envoy/admin/v3"
    	route "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    )
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Nov 03 08:41:32 GMT 2022
    - 3.2K bytes
    - Viewed (0)
  5. istioctl/pkg/xds/client.go

    // limitations under the License.
    
    package xds
    
    // xds uses ADSC to call XDS
    
    import (
    	"context"
    	"crypto/tls"
    	"fmt"
    	"strings"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/credentials"
    
    	"istio.io/istio/istioctl/pkg/clioptions"
    	"istio.io/istio/pilot/pkg/model"
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Dec 19 22:42:42 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/Chart.yaml

    version: 1.0.0
    appVersion: 1.0.0
    tillerVersion: ">=2.7.2"
    description: Helm chart for a remote cluster using an external istio control plane
    keywords:
      - istio
      - external-istiod
    sources:
      - https://github.com/istio/istio
    engine: gotpl
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Mar 21 01:23:27 GMT 2023
    - 458 bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/feature_request.md

    ---
    name: Feature request
    about: Suggest an idea to improve Istio
    
    ---
    (This is used to request new product features, please visit <https://github.com/istio/istio/discussions> for questions on using Istio)
    
    **Describe the feature request**
    
    **Describe alternatives you've considered**
    
    **Affected product area (please put an X in all that apply)**
    
    [ ] Ambient
    [ ] Docs
    [ ] Dual Stack
    [ ] Installation
    [ ] Networking
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Feb 12 19:42:48 GMT 2024
    - 707 bytes
    - Viewed (0)
  8. .github/SECURITY.md

    [Support Announcements]: https://istio.io/news/support/
    [Istio Security Vulnerabilities]: https://istio.io/about/security-vulnerabilities/
    [Security Bulletins]: https://istio.io/news/security/
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri May 12 15:17:53 GMT 2023
    - 905 bytes
    - Viewed (0)
  9. istioctl/pkg/writer/pilot/status.go

    // limitations under the License.
    
    package pilot
    
    import (
    	"encoding/json"
    	"fmt"
    	"io"
    	"sort"
    	"text/tabwriter"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	xdsstatus "github.com/envoyproxy/go-control-plane/envoy/service/status/v3"
    
    	"istio.io/istio/istioctl/pkg/multixds"
    	"istio.io/istio/pilot/pkg/model"
    	xdsresource "istio.io/istio/pilot/pkg/xds/v3"
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 04:16:55 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  10. operator/cmd/mesh/manifest.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.
    
    package mesh
    
    import (
    	"github.com/spf13/cobra"
    
    	"istio.io/istio/istioctl/pkg/cli"
    )
    
    // ManifestCmd is a group of commands related to manifest generation, installation, diffing and migration.
    func ManifestCmd(ctx cli.Context) *cobra.Command {
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 1.4K bytes
    - Viewed (0)
Back to top