Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for JWT_RULE (0.09 sec)

  1. releasenotes/notes/30294.yaml

    kind: feature
    area: security
    issue:
    - 30295
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 23 00:29:15 UTC 2021
    - 264 bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/options.go

    }
    
    var (
    	PodNamespace = env.Register("POD_NAMESPACE", constants.IstioSystemNamespace, "").Get()
    	PodName      = env.Register("POD_NAME", "", "").Get()
    	JwtRule      = env.Register("JWT_RULE", "",
    		"The JWT rule used by istiod authentication").Get()
    )
    
    // Revision is the value of the Istio control plane revision, e.g. "canary",
    // and is the value used by the "istio.io/rev" label.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/server.go

    			s.kubeClient.RunAndWait(stop)
    			return nil
    		})
    	}
    
    	return s, nil
    }
    
    func initOIDC(args *PilotArgs, meshWatcher mesh.Watcher) (security.Authenticator, error) {
    	// JWTRule is from the JWT_RULE environment variable.
    	// An example of json string for JWTRule is:
    	// `{"issuer": "foo", "jwks_uri": "baz", "audiences": ["aud1", "aud2"]}`.
    	jwtRule := &v1beta1.JWTRule{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top