2019-08-21 10:12:07 +02:00
/ *
Licensed under the Apache License , Version 2.0 ( the "License" ) ;
you may not use this file except in compliance with the License .
You may obtain a copy of the License at
http : //www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing , software
distributed under the License is distributed on an "AS IS" BASIS ,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied .
See the License for the specific language governing permissions and
limitations under the License .
* /
package main
import (
"flag"
2019-08-21 12:10:25 +02:00
"fmt"
2019-08-21 10:12:07 +02:00
"os"
2020-02-11 17:05:41 +01:00
"time"
2019-08-21 10:12:07 +02:00
2019-08-21 12:10:25 +02:00
"github.com/ory/hydra-maester/hydra"
apiv1 "k8s.io/api/core/v1"
2019-08-21 10:12:07 +02:00
"k8s.io/apimachinery/pkg/runtime"
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/log/zap"
2021-09-14 08:07:06 -04:00
hydrav1alpha1 "github.com/ory/hydra-maester/api/v1alpha1"
"github.com/ory/hydra-maester/controllers"
2019-08-21 10:12:07 +02:00
// +kubebuilder:scaffold:imports
)
var (
scheme = runtime . NewScheme ( )
setupLog = ctrl . Log . WithName ( "setup" )
)
func init ( ) {
2019-08-21 12:10:25 +02:00
apiv1 . AddToScheme ( scheme )
2019-08-21 10:12:07 +02:00
hydrav1alpha1 . AddToScheme ( scheme )
// +kubebuilder:scaffold:scheme
}
func main ( ) {
2019-11-14 01:11:13 -07:00
var (
2021-05-13 13:50:21 +02:00
metricsAddr , hydraURL , endpoint , forwardedProto , syncPeriod , tlsTrustStore , namespace , leaderElectorNs string
hydraPort int
enableLeaderElection , insecureSkipVerify bool
2019-11-14 01:11:13 -07:00
)
2019-08-21 12:10:25 +02:00
2019-08-21 10:12:07 +02:00
flag . StringVar ( & metricsAddr , "metrics-addr" , ":8080" , "The address the metric endpoint binds to." )
2019-08-29 11:23:45 +02:00
flag . StringVar ( & hydraURL , "hydra-url" , "" , "The address of ORY Hydra" )
2019-08-30 08:59:09 +02:00
flag . IntVar ( & hydraPort , "hydra-port" , 4445 , "Port ORY Hydra is listening on" )
2019-08-21 12:10:25 +02:00
flag . StringVar ( & endpoint , "endpoint" , "/clients" , "ORY Hydra's client endpoint" )
2019-11-14 01:11:13 -07:00
flag . StringVar ( & forwardedProto , "forwarded-proto" , "" , "If set, this adds the value as the X-Forwarded-Proto header in requests to the ORY Hydra admin server" )
2021-05-10 11:18:39 +02:00
flag . StringVar ( & tlsTrustStore , "tls-trust-store" , "" , "trust store certificate path. If set ca will be set in http client to connect with hydra admin" )
2020-02-11 17:05:41 +01:00
flag . StringVar ( & syncPeriod , "sync-period" , "10h" , "Determines the minimum frequency at which watched resources are reconciled" )
2021-05-10 11:18:39 +02:00
flag . BoolVar ( & enableLeaderElection , "enable-leader-election" , false , "Enable leader election for controller manager. Enabling this will ensure there is only one active controller manager." )
flag . BoolVar ( & insecureSkipVerify , "insecure-skip-verify" , false , "If set, http client will be configured to skip insecure verification to connect with hydra admin" )
2021-05-13 13:50:21 +02:00
flag . StringVar ( & namespace , "namespace" , "" , "Namespace in which the controller should operate. Setting this will make the controller ignore other namespaces." )
flag . StringVar ( & leaderElectorNs , "leader-elector-namespace" , "" , "Leader elector namespace where controller should be set." )
2019-08-21 10:12:07 +02:00
flag . Parse ( )
2021-05-10 10:35:08 +02:00
ctrl . SetLogger ( zap . New ( zap . UseDevMode ( true ) ) )
2019-08-21 10:12:07 +02:00
2020-02-11 17:05:41 +01:00
syncPeriodParsed , err := time . ParseDuration ( syncPeriod )
if err != nil {
setupLog . Error ( err , "unable to start manager" )
os . Exit ( 1 )
}
2019-08-21 10:12:07 +02:00
mgr , err := ctrl . NewManager ( ctrl . GetConfigOrDie ( ) , ctrl . Options {
2021-05-13 13:50:21 +02:00
Scheme : scheme ,
MetricsBindAddress : metricsAddr ,
LeaderElection : enableLeaderElection ,
SyncPeriod : & syncPeriodParsed ,
Namespace : namespace ,
LeaderElectionNamespace : leaderElectorNs ,
2019-08-21 10:12:07 +02:00
} )
if err != nil {
setupLog . Error ( err , "unable to start manager" )
os . Exit ( 1 )
}
2019-08-29 11:23:45 +02:00
if hydraURL == "" {
2019-08-30 08:59:09 +02:00
setupLog . Error ( fmt . Errorf ( "hydra URL can't be empty" ) , "unable to create controller" , "controller" , "OAuth2Client" )
2019-08-29 11:23:45 +02:00
os . Exit ( 1 )
}
2019-11-14 01:11:13 -07:00
defaultSpec := hydrav1alpha1 . OAuth2ClientSpec {
HydraAdmin : hydrav1alpha1 . HydraAdmin {
URL : hydraURL ,
Port : hydraPort ,
Endpoint : endpoint ,
ForwardedProto : forwardedProto ,
} ,
}
2021-05-10 11:18:39 +02:00
if tlsTrustStore != "" {
if _ , err := os . Stat ( tlsTrustStore ) ; err != nil {
setupLog . Error ( err , "cannot parse tls trust store" )
os . Exit ( 1 )
}
}
2021-09-14 08:07:06 -04:00
hydraClient , err := hydra . New ( defaultSpec , tlsTrustStore , insecureSkipVerify )
2019-08-21 12:10:25 +02:00
if err != nil {
2019-11-14 01:11:13 -07:00
setupLog . Error ( err , "making default hydra client" , "controller" , "OAuth2Client" )
2019-08-21 12:10:25 +02:00
os . Exit ( 1 )
2019-11-14 01:11:13 -07:00
2019-08-21 12:10:25 +02:00
}
2021-09-14 08:07:06 -04:00
err = controllers . New (
mgr . GetClient ( ) ,
hydraClient ,
ctrl . Log . WithName ( "controllers" ) . WithName ( "OAuth2Client" ) ,
controllers . WithNamespace ( namespace ) ,
) . SetupWithManager ( mgr )
2019-08-21 10:12:07 +02:00
if err != nil {
setupLog . Error ( err , "unable to create controller" , "controller" , "OAuth2Client" )
os . Exit ( 1 )
}
// +kubebuilder:scaffold:builder
setupLog . Info ( "starting manager" )
if err := mgr . Start ( ctrl . SetupSignalHandler ( ) ) ; err != nil {
setupLog . Error ( err , "problem running manager" )
os . Exit ( 1 )
}
}