Skip to content

spinnaker/fiat

Folders and files

NameName
Last commit message
Last commit date
Sep 13, 2022
Dec 18, 2019
Mar 16, 2023
Mar 22, 2021
Aug 1, 2022
Nov 15, 2019
Apr 13, 2022
May 12, 2022
Dec 4, 2021
Sep 2, 2022
Mar 3, 2021
Mar 3, 2021
Feb 7, 2023
Sep 2, 2022
Dec 4, 2021
Mar 19, 2021
Mar 22, 2017
Feb 27, 2020
Apr 28, 2020
Apr 27, 2022
Jun 14, 2016
Dec 4, 2021
Sep 10, 2020
Aug 3, 2022
Aug 12, 2020
Jun 14, 2016
Jul 1, 2020
Oct 28, 2019
Mar 10, 2022
Mar 6, 2023
Aug 18, 2020
Aug 18, 2020
Jun 22, 2016
Mar 3, 2021

Repository files navigation

Spinnaker Auth Service

Build Status

   ____ _         ____ __    ___               _            ______                  _
  / __/(_)__ __  /  _// /_  / _ | ___ _ ___ _ (_)___       /_  __/____ ___ _ _  __ (_)___
 / _/ / / \ \ / _/ / / __/ / __ |/ _ `// _ `// // _ \ _     / /  / __// _ `/| |/ // /(_-<
/_/  /_/ /_\_\ /___/ \__/ /_/ |_|\_, / \_,_//_//_//_/( )   /_/  /_/   \_,_/ |___//_//___/
                                /___/                |/

Fiat is the authorization server for the Spinnaker system.

It exposes a RESTful interface for querying the access permissions for a particular user. It currently supports three kinds of resources:

  • Accounts
  • Applications
  • Service Accounts

Accounts

Accounts are setup within Clouddriver and queried by Fiat for its configured requiredGroupMembership restrictions.

Applications

Applications are the combination of config metadata pulled from Front50 and server group names (e.g., application-stack-details). Application permissions sit beside application configuration in S3/Google Cloud Storage.

Service Accounts

Fiat Service Accounts are groups that act as a user during automated triggers (say, from a GitHub push or Jenkins build). Authorization is built in by making the service account a member of a group specified in requiredGroupMembership.


User Role/Authorization Providers

Currently supported user role providers are:

  • Google Groups (through a Google Apps for Work organization)
  • GitHub Teams
  • LDAP
  • File based role provider
  • SAML Groups

Modular builds

By default, Fiat is built with all authorization providers included. To build only a subset of providers, use the includeProviders flag:

./gradlew -PincludeProviders=google-groups,ldap clean build

You can view the list of all providers in gradle.properties.

Debugging

To start the JVM in debug mode, set the Java system property DEBUG=true:

./gradlew -DDEBUG=true

The JVM will then listen for a debugger to be attached on port 7103. The JVM will not wait for the debugger to be attached before starting Fiat; the relevant JVM arguments can be seen and modified as needed in build.gradle.