k8s-gcr-auth-helper 0.1.10

A Kubernetes authentication helper to expose per-user credentials as Image Pull Secrets for Google Container Registry
Documentation
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate log;

pub mod common;
pub mod credentials;
mod oauth;
pub mod run;
pub mod setup;
pub mod watch;

pub type Targets = common::Targets;
pub type Credentials = credentials::Credentials;
pub type CredentialConfiguration<'a> = credentials::CredentialConfiguration<'a>;
pub type Watcher<'a> = watch::Watcher<'a>;
pub type Runner<'a> = run::Runner<'a>;
pub type Setup<'a> = setup::Setup<'a>;