kops/upup/pkg/fi
Justin Santa Barbara 933506bdbb Apply gofmt 2016-11-13 21:06:55 -05:00
..
cloudup Apply gofmt 2016-11-13 21:06:55 -05:00
fitasks fitask header fix 2016-11-08 15:16:41 -08:00
k8sapi fixing more headers 2016-10-15 19:20:56 -06:00
loader fixing more headers 2016-10-15 19:20:56 -06:00
nodeup Apply gofmt 2016-11-13 21:06:55 -05:00
secrets fixing more headers 2016-10-15 19:20:56 -06:00
utils fixing more headers 2016-10-15 19:20:56 -06:00
README.md Commit from 30k feet before kubecon, adding information on fi/cloudup/nodeup 2016-11-06 15:33:29 -07:00
assetstore.go fixing more headers 2016-10-15 19:20:56 -06:00
ca.go fixing more headers 2016-10-15 19:20:56 -06:00
changes.go fixing more headers 2016-10-15 19:20:56 -06:00
cloud.go Merge pull request #676 from justinsb/us_east_2 2016-10-21 17:28:17 -06:00
compare_with_id.go fixing more headers 2016-10-15 19:20:56 -06:00
context.go fixing more headers 2016-10-15 19:20:56 -06:00
default_methods.go fixing more headers 2016-10-15 19:20:56 -06:00
deletions.go fixing more headers 2016-10-15 19:20:56 -06:00
dryrun_target.go Avoid concurrent append to slices in DryRunTarget 2016-10-18 00:16:05 -04:00
errors.go fixing more headers 2016-10-15 19:20:56 -06:00
executor.go fixing more headers 2016-10-15 19:20:56 -06:00
files.go fixing more headers 2016-10-15 19:20:56 -06:00
has_address.go fixing more headers 2016-10-15 19:20:56 -06:00
http.go fixing more headers 2016-10-15 19:20:56 -06:00
named.go fixing more headers 2016-10-15 19:20:56 -06:00
options.go fixing more headers 2016-10-15 19:20:56 -06:00
resources.go Merge pull request #654 from justinsb/govet_fixes 2016-10-15 21:00:36 -06:00
secrets.go fixing more headers 2016-10-15 19:20:56 -06:00
target.go fixing more headers 2016-10-15 19:20:56 -06:00
task.go fixing more headers 2016-10-15 19:20:56 -06:00
timestamp.go fixing more headers 2016-10-15 19:20:56 -06:00
topological_sort.go fixing more headers 2016-10-15 19:20:56 -06:00
users.go fixing more headers 2016-10-15 19:20:56 -06:00
values.go fixing more headers 2016-10-15 19:20:56 -06:00
vfs_castore.go Merge pull request #660 from justinsb/fix_upgrade 2016-10-18 10:39:33 -06:00
vfs_castore_test.go fixing more headers 2016-10-15 19:20:56 -06:00

README.md

fi - Fast Install

The fi package is responsible for holding the infrastructure that supports installing, provisioning and deploying resources to get kubernetes running in a cloud.

Cloudup

The cloudup package within fi contains infrastructure that handles deploying cloud resources.

Cloudup has a concept of models. These are a core component of kops, and critical to understanding how the tool works. They offer flexibility for the tool, and serve as the main representation of infrastructure in the cloud. They are the glue that will map resources to kops functionality. These models are stored in upup/models/cloudup.

AWS

Currently aws is the most verbose and feature rich of the 2 primarily supported cloud providers. Cloudup will handle reading the aws models (found in _aws) and apply these resources to the cloud.

A user will notice awstasks and awsup directores within cloudup. These are the files that will actually map an aws resource (API Request) to go code.

By convention, every used API request in kops for aws, has an associated awstask with it.

GCE

Nodeup

This tool is secondary to cloudup.

After the resources to the cloud have been deployed, we will now need to provision the resources.

Nodeup runs as a binary on VMs in the cloud and will handle bringing up a kubernetes cluster.

The core bits of nodeup infrastructure can be found here.