Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PreviousInstallExists (0.29 sec)

  1. istioctl/pkg/tag/util.go

    	}
    	return result
    }
    
    // PreviousInstallExists checks whether there is an existing Istio installation. Should be used in installer when deciding
    // whether to make an installation the default.
    func PreviousInstallExists(ctx context.Context, client kubernetes.Interface) bool {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jan 16 17:43:42 GMT 2024
    - 5.4K bytes
    - Viewed (1)
  2. operator/cmd/mesh/install.go

    	}
    
    	// Ignore the err because we don't want to show
    	// "no running Istio pods in istio-system" for the first time
    	_ = detectIstioVersionDiff(p, tag, ns, kubeClient, iop)
    	exists := revtag.PreviousInstallExists(context.Background(), kubeClient.Kube())
    	err = detectDefaultWebhookChange(p, kubeClient, iop, exists)
    	if err != nil {
    		return fmt.Errorf("failed to detect the default webhook change: %v", err)
    	}
    
    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)
Back to top