Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,569 for isCall (0.18 sec)

  1. cni/pkg/install/install.go

    // limitations under the License.
    
    package install
    
    import (
    	"context"
    	"fmt"
    	"os"
    	"path/filepath"
    	"sync/atomic"
    
    	"istio.io/istio/cni/pkg/config"
    	"istio.io/istio/cni/pkg/constants"
    	"istio.io/istio/cni/pkg/util"
    	"istio.io/istio/pkg/file"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var installLog = log.RegisterScope("install", "CNI install")
    
    type Installer struct {
    Go
    - Registered: Wed Apr 10 22:53:08 GMT 2024
    - Last Modified: Thu Feb 08 18:52:24 GMT 2024
    - 10.8K bytes
    - Viewed (0)
  2. operator/cmd/mesh/install.go

    }
    
    // InstallCmdWithArgs generates an Istio install manifest and applies it to a cluster
    func InstallCmdWithArgs(ctx cli.Context, rootArgs *RootArgs, iArgs *InstallArgs) *cobra.Command {
    	ic := &cobra.Command{
    		Use:     "install",
    		Short:   "Applies an Istio manifest, installing or reconfiguring Istio on a cluster.",
    		Long:    "The install command generates an Istio install manifest and applies it to a cluster.",
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 15.2K bytes
    - Viewed (0)
  3. manifests/charts/install-OpenShift.md

    ```console
    helm install istio-base -n istio-system manifests/charts/base --set profile=openshift
    ```
    
    2) `istio-cni` chart installs the CNI plugin. This should be installed after the `base` chart and prior to `istiod` chart. Need to add `--set pilot.cnienabled=true` to the `istiod` install to enable its usage.
    
    ```console
    helm install istio-cni -n kube-system manifests/charts/istio-cni --set profile=openshift
    Plain Text
    - Registered: Wed Apr 10 22:53:08 GMT 2024
    - Last Modified: Wed Apr 10 00:27:53 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  4. cni/test/install_cni.go

    // limitations under the License.
    
    package install
    
    import (
    	"bytes"
    	"context"
    	"errors"
    	"fmt"
    	"os"
    	"path/filepath"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/spf13/viper"
    
    	"istio.io/istio/cni/pkg/config"
    	"istio.io/istio/cni/pkg/constants"
    	"istio.io/istio/cni/pkg/install"
    	"istio.io/istio/cni/pkg/util"
    Go
    - Registered: Wed Apr 10 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  5. build-logic/packaging/src/main/kotlin/gradlebuild.install.gradle.kts

            if (libDir.list()?.any { it.matches(Regex("^gradle.*\\.jar")) } == true) {
                return@also
            }
        }
    
        throw RuntimeException("Install directory $dir does not look like a Gradle installation. Cannot delete it to install.")
    Plain Text
    - Registered: Wed Jan 24 11:36:10 GMT 2024
    - Last Modified: Wed Mar 22 07:17:43 GMT 2023
    - 2K bytes
    - Viewed (0)
  6. cni/deployments/kubernetes/Dockerfile.install-cni

    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/istio-cni /opt/cni/bin/istio-cni
    COPY ${TARGETARCH:-amd64}/install-cni /usr/local/bin/install-cni
    
    ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/cni/bin
    WORKDIR /opt/cni/bin
    Plain Text
    - Registered: Wed Apr 10 22:53:08 GMT 2024
    - Last Modified: Wed Feb 07 21:40:24 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  7. src/archive/tar/testdata/small.txt

    Russ Cox <******@****.***> 1410149331 -0400
    Plain Text
    - Registered: Tue Apr 09 11:13:10 GMT 2024
    - Last Modified: Mon Sep 08 04:08:51 GMT 2014
    - 5 bytes
    - Viewed (0)
  8. cni/test/install_k8s_test.go

    // limitations under the License.
    
    // This tests the k8s installation.  It validates the CNI plugin configuration
    // and the existence of the CNI plugin binary locations.
    package install_test
    
    import (
    	"testing"
    
    	install "istio.io/istio/cni/test"
    	"istio.io/istio/pkg/test/env"
    )
    
    var (
    	Hub = "gcr.io/istio-release"
    	Tag = "master-latest-daily"
    )
    
    type testCase struct {
    	name             string
    Go
    - Registered: Wed Apr 10 22:53:08 GMT 2024
    - Last Modified: Wed Jul 27 18:01:48 GMT 2022
    - 8K bytes
    - Viewed (0)
  9. cni/pkg/install/install_test.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 install
    
    import (
    	"context"
    	"os"
    	"path/filepath"
    	"sync/atomic"
    	"testing"
    	"time"
    
    	"istio.io/istio/cni/pkg/config"
    	testutils "istio.io/istio/pilot/test/util"
    	"istio.io/istio/pkg/file"
    Go
    - Registered: Wed Apr 10 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/input/install_package_path.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      profile: empty
      hub: docker.io/istio
      tag: 1.1.4
      components:
        pilot:
    Others
    - Registered: Wed Jan 24 22:53:09 GMT 2024
    - Last Modified: Wed Mar 25 22:02:53 GMT 2020
    - 163 bytes
    - Viewed (0)
Back to top