Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for istiodchart (0.59 sec)

  1. samples/ambient-argo/documentation/argo-reference-arch.dot

      appfiles -> appcontents
      appfiles -> appwp
      appfiles -> ig
      appfiles -> nwc
      ztunchart[label="ztunnel",class="helm"]
      ztunnel -> ztunchart -> ztunnelds
      istiodchart[label="istiod",class="helm"]
      cpt -> istiodchart
      istiodchart -> istiod18
      istiodchart -> istiod19
      cnichart[label="cni",class="helm"]
      cni -> cnichart -> cnids
      istiogh[label="istio github"]
      extras -> istiogh -> extrads
      tagchart[label="tag*"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/certcontroller.go

    				log.Errorf("reload istiod cert failed: %v", err)
    			}
    		}
    	}
    }
    
    // loadIstiodCert load IstiodCert received from watchCh once
    // The Istiod certs are the DNS-based certs used by Istiod GRPC server and webhooks.
    // saved as s.istiodCert.
    func (s *Server) loadIstiodCert() error {
    	keyCertBundle := s.istiodCertBundleWatcher.GetKeyCertBundle()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/server.go

    		}
    	}
    }
    
    // initIstiodCertLoader will make sure istiodCertBundleWatcher is updating
    // the certs and updates Server.istiodCert - which is returned on all TLS requests.
    func (s *Server) initIstiodCertLoader() error {
    	if err := s.loadIstiodCert(); err != nil {
    		return fmt.Errorf("first time load IstiodCert failed: %v", err)
    	}
    	_, watchCh := s.istiodCertBundleWatcher.AddWatcher()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/server_test.go

    			stop := make(chan struct{})
    			g.Expect(s.Start(stop)).To(Succeed())
    			defer func() {
    				close(stop)
    				s.WaitUntilCompletion()
    			}()
    
    			if c.expNewCert {
    				if istiodCert, err := s.getIstiodCertificate(nil); istiodCert == nil || err != nil {
    					t.Errorf("Istiod failed to generate new DNS cert")
    				}
    			} else {
    				if len(c.expCert) != 0 {
    					if !checkCert(t, s, c.expCert, c.expKey) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top