Documentation ¶
Index ¶
- Variables
- type ArgoCDServer
- func (a *ArgoCDServer) Authenticate(ctx context.Context) (context.Context, error)
- func (a *ArgoCDServer) Init(ctx context.Context)
- func (a *ArgoCDServer) Initialized() bool
- func (a *ArgoCDServer) Listen() (*Listeners, error)
- func (a *ArgoCDServer) Run(ctx context.Context, listeners *Listeners)
- func (a *ArgoCDServer) Shutdown()
- type ArgoCDServerOpts
- type Listeners
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrNoSession = status.Errorf(codes.Unauthenticated, "no session information")
ErrNoSession indicates no auth token was supplied as part of a request
Functions ¶
This section is empty.
Types ¶
type ArgoCDServer ¶
type ArgoCDServer struct { ArgoCDServerOpts // contains filtered or unexported fields }
ArgoCDServer is the API server for Argo CD
func NewServer ¶
func NewServer(ctx context.Context, opts ArgoCDServerOpts) *ArgoCDServer
NewServer returns a new instance of the Argo CD API server
func (*ArgoCDServer) Authenticate ¶
Authenticate checks for the presence of a valid token when accessing server-side resources.
func (*ArgoCDServer) Init ¶ added in v2.4.4
func (a *ArgoCDServer) Init(ctx context.Context)
Init starts informers used by the API server
func (*ArgoCDServer) Initialized ¶ added in v2.1.0
func (a *ArgoCDServer) Initialized() bool
func (*ArgoCDServer) Listen ¶ added in v2.4.3
func (a *ArgoCDServer) Listen() (*Listeners, error)
func (*ArgoCDServer) Run ¶
func (a *ArgoCDServer) Run(ctx context.Context, listeners *Listeners)
Run runs the API Server We use k8s.io/code-generator/cmd/go-to-protobuf to generate the .proto files from the API types. k8s.io/ go-to-protobuf uses protoc-gen-gogo, which comes from gogo/protobuf (a fork of golang/protobuf).
type ArgoCDServerOpts ¶
type ArgoCDServerOpts struct { DisableAuth bool EnableGZip bool Insecure bool StaticAssetsDir string ListenPort int MetricsPort int Namespace string DexServerAddr string DexTLSConfig *dex.DexTLSConfig BaseHRef string RootPath string KubeClientset kubernetes.Interface AppClientset appclientset.Interface RepoClientset repoapiclient.Clientset Cache *servercache.Cache RedisClient *redis.Client TLSConfigCustomizer tlsutil.ConfigCustomizer XFrameOptions string ContentSecurityPolicy string ListenHost string ApplicationNamespaces []string }
Click to show internal directories.
Click to hide internal directories.