Matt Butcher
69e6256885
feat(*): add scaffolded cli app.
9 years ago
vaikas-google
93f74d0c8a
bring back to par with master
9 years ago
vaikas-google
125bad99cf
unit tests pass, can deploy packages
9 years ago
Ville Aikas
c3831f021a
debug stuff
9 years ago
vaikas-google
e1cb0ede86
handle fetching number of urls as a unit that get pooled into a single template so that helm works out of the box
9 years ago
vaikas-google
8ba0eb4f4d
Add support for helm packages. Quite hacky in parts, needs to resolve naming collisions
9 years ago
Matt Butcher
546ee53ac0
Add license.
9 years ago
Matt Butcher
a7401137d0
Initial commit.
9 years ago
vaikas-google
62f1948607
Merge pull request #169 from bmelville/wtf
...
Need to nohup these so they detach from current terminal process.
9 years ago
Brendan Melville
8820a8bb5c
Merge pull request #168 from runseb/license
...
Improve license headers
9 years ago
Brendan Melville
a85f9a3d79
Need to nohup these so they detach from current terminal process.
9 years ago
runseb
bea172d705
Improve license headers
9 years ago
Brendan Melville
0793a2dfd7
Merge pull request #166 from vaikas-google/helm
...
Add support for helm packages, native kubernetes objects and helm repository format.
9 years ago
Ville Aikas
9777e72692
Add support for native kubernetes types, helm packages and helm/charts github repo
9 years ago
vaikas-google
17e0a46887
Merge pull request #163 from runseb/dockerfile
...
Changes to resourcifier Dockerfile
9 years ago
vaikas-google
40d184dad0
Merge pull request #165 from bmelville/install
...
Introducing binaries hosted from URL
9 years ago
Brendan Melville
993c3eeec4
Updating readme with new binaries.
...
Also adding docs on pushing, and the script for pushing.
9 years ago
Brendan Melville
f7f9b8357b
Adding script to push the client and a simple install script.
9 years ago
Brendan Melville
593e95f92f
Merge pull request #164 from runseb/crossdm
...
Dockerfile and Makefile for cross-compile of dm
9 years ago
runseb
061f0f58a7
Dockerfile and Makefile for cross-compile of dm
9 years ago
runseb
c54fbb74da
Changes to resourcifier Dockerfile
9 years ago
Brendan Melville
9654e63d19
Merge pull request #162 from vaikas-google/master
...
Clean up the printing of the types, show the short url
9 years ago
Jack Greenfield
5ca2eb002e
Merge pull request #160 from runseb/patch-4
...
Logic for the token is wrong
9 years ago
Ville Aikas
4c517d7ffe
Clean up the printing of the types, show the actual name that the user would use in templates
9 years ago
vaikas-google
9a31c42dfe
fix template list and template describe
9 years ago
runseb
4e1c7eb6ef
Logic for the token is wrong
...
The use of token or basic auth was a conditional inside the TLS verify loop.
You can use TLS or skip the verification and use token or basic auth.
Just a tab issue. Put the token conditional outside the kubeInsecure check.
Also handled the case that we actually switch the boolean for skip TLS and forced it to replace true or false.
9 years ago
vaikas-google
1d51ef1b4a
Merge pull request #131 from jackgr/implement-stdin
...
Implement --stdin flag on command line.
9 years ago
vaikas-google
d559f3172f
Merge pull request #154 from grahamawelch/master
...
Remove Google Inc. Copyright. from unit test files.
9 years ago
vaikas-google
b5edff70f6
Merge pull request #155 from runseb/patch-2
...
Small typo in logs for configurator
9 years ago
Brendan Melville
3fce40a9b7
Merge pull request #156 from runseb/patch-3
...
Treat token based auth properly in resourcifier
9 years ago
runseb
18e1122a66
Treat token based auth properly in resourcifier
...
Wrong operator for token based auth.
If a token was specified this was asking for username and password.
9 years ago
runseb
e6422997e7
Small typo in logs for configurator
9 years ago
vaikas-google
4ea5526e3a
Merge pull request #153 from goltermann/travis-fail
...
Edit Makefile to actually return failure code on test failures.
9 years ago
Graham Welch
b1cf2e1102
Remove Google Inc. Copyright from unittest files.
9 years ago
goltermann
9ba4fedc73
Edit Makefile to actually return failure code on test failures.
9 years ago
jackgr
aa15e25d94
Implement --stdin flag on command line.
9 years ago
vaikas-google
fba7dbdea1
Merge pull request #150 from bmelville/refs
...
Resource errors should result in a failed deployment with good errors.
9 years ago
Brendan Melville
93f551d7fd
Resource errors should result in a failed deployment with good errors.
9 years ago
vaikas-google
b0c0b3071e
Merge pull request #147 from bmelville/144
...
Deployment now has top-level error for deployment-level failures
9 years ago
Brendan Melville
55ec074701
Broke guestbook.
9 years ago
Brendan Melville
b2187ade0a
Merge pull request #148 from vaikas-google/master
...
Reintroduce replicatedservice.py as it is used by tests.
9 years ago
Brendan Melville
a6c48fb249
Deployment now has top-level error for deployment-level failures
...
Deployment status is now deployment state, which contains both status
and errors, which are set for deployment-level failure.
Some common failures that will show up here are expansion, type
resolution, and reference failures.
9 years ago
vaikas-google
385d8fa83f
Reintroduce replicatedservice.py as it is used by tests.
9 years ago
vaikas-google
92adbebad4
Merge pull request #143 from bmelville/refs
...
Failures during config creation no longer leave deployments undeleteable
9 years ago
vaikas-google
d5e86ea6ac
Add help text for manifest command
9 years ago
Brendan Melville
31177c49ab
Failures during config creation no longer leave deployments undeleteable
...
Previously a failure would prematurely exit the creation flow without
attaching the manifest to the deployment. This now always attaches the
manifest, and then updates it in place with the outcome of
resourcification.
9 years ago
vaikas-google
376d33992a
Merge pull request #142 from bmelville/refs
...
Resourcifier now processes resources in dependency order based on refs.
9 years ago
Brendan Melville
22f8a3eb9c
Adding reference to guestbook to demonstrate dependencies.
9 years ago
Brendan Melville
f1fe4470d3
Resourcifier now processes resources in dependency order based on refs.
...
For now, references act only as dependencies and do not fill in the
values to which they refer. That will come in a follow-up.
Resources are still processed in a single iteration with no
parallelization.
9 years ago
vaikas-google
d3d57fdaee
Merge pull request #134 from jackgr/doc-fix
...
Fix some document errors
9 years ago