1. Authentication provider plugin framework 2. An instance of authentication provider plugin for OIDC (OpenID Connect)
9 lines
322 B
Makefile
9 lines
322 B
Makefile
INCLUDE:=-I../../kubernetes/include -I../../kubernetes/model -I../../kubernetes/api -I../../kubernetes/config
|
|
LIBS:=-L../../kubernetes/build -lkubernetes -lcurl -lyaml -lpthread -lssl -lz
|
|
CFLAGS:=-g
|
|
|
|
all:
|
|
gcc main.c $(CFLAGS) $(INCLUDE) $(LIBS) -o list_pod_by_auth_provider_bin
|
|
clean:
|
|
rm ./list_pod_by_auth_provider_bin
|