Guillaume Lours
54710d5e75
Ensure invocation image has been build when running a make or make all command
...
Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
2019-09-25 12:25:17 +02:00
Silvin Lubecki
b118ccd82e
Merge pull request #636 from ulyssessouza/rename-list-with-ls
...
Rename command `list` with `ls`
2019-09-25 09:32:42 +02:00
Jean-Christophe Sirot
cc0d5ee085
Merge pull request #633 from rumpl/ux-init
...
Ux init
2019-09-24 17:35:04 +02:00
Ulysses Souza
84bddd8d22
Rename command list with ls
...
Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
2019-09-24 16:27:04 +02:00
Stefan Scherer
dc0d83c861
Send slack message for failed master builds
...
Signed-off-by: Stefan Scherer <stefan.scherer@docker.com>
2019-09-24 15:04:33 +02:00
Djordje Lukic
c85f3d0186
Do not search implicitly for a compose file
...
The user needs to explicitly give the path to the docker-compose file
that they want to base the app on.
Signed-off-by: Djordje Lukic <djordje.lukic@docker.com>
2019-09-24 14:57:59 +02:00
Djordje Lukic
20a3441888
Remove the description and maintainer flag on init
...
As per the UX study we remove these two flags to make init simpler.
The maintainer is populated with the name of the current user.
Signed-off-by: Djordje Lukic <djordje.lukic@docker.com>
2019-09-24 14:57:50 +02:00
Silvin Lubecki
fffbbfaaf0
Merge pull request #614 from jcsirot/remove-obsolete-integrations
...
Remove 3rd party software integrations
2019-09-23 12:00:00 +02:00
Silvin Lubecki
451f245670
Merge pull request #624 from thaJeztah/use_password_stdin
...
Jenkinsfile: use --password-stdin
2019-09-23 11:27:22 +02:00
Sebastiaan van Stijn
59ec4756ea
Jenkinsfile: use --password-stdin
...
before:
docker login -u $REGISTRY_USERNAME -p $REGISTRY_PASSWORD
WARNING! Using --password via the CLI is insecure. Use --password-stdin.
Login Succeeded
with this PR:
echo $REGISTRY_PASSWORD | docker login -u "$REGISTRY_USERNAME" --password-stdin
Login Succeeded
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2019-09-20 10:36:40 +02:00
Nicolas De Loof
24b127c3d8
Rename "uninstall" to "remove/rm"
...
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
2019-09-20 08:55:15 +02:00
Nicolas De Loof
e45cba16c4
Remove version command, introduce --version option
...
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
2019-09-18 16:16:08 +02:00
Jean-Christophe Sirot
e495f2202b
Rename --kubernetes-namespace flag to --namespace
...
Signed-off-by: Jean-Christophe Sirot <jean-christophe.sirot@docker.com>
2019-09-18 09:14:30 +02:00
Djordje Lukic
0947d0768c
Merge pull request #618 from doanac/bug611
...
Dockerfile.invocation-image: Fix for multi-arch
2019-09-17 11:24:05 +02:00
Jean-Christophe Sirot
3518f0eb63
Merge pull request #615 from rumpl/remove-strict-flag
...
Remove the strict flag
2019-09-17 11:07:52 +02:00
Djordje Lukic
621d08ba69
Merge pull request #616 from jcsirot/add-alias-status-ps
...
Add ps alias to docker app status
2019-09-16 17:08:31 +02:00
Andy Doan
43cc1ba885
Dockerfile.invocation-image: Fix for multi-arch
...
The container used for compiling the application is only available on
amd64. This change uses a multi-arch golang container and also fixes
an issue where the apt cache can be out-of-date.
Fixes Bug #611
Signed-off-by: Ricardo Salveti <ricardo@foundries.io>
Reported-by: Andy Doan <andy@foundries.io>
2019-09-16 09:53:05 -05:00
Jean-Christophe Sirot
e33a659913
Add ps alias to docker app status
...
Signed-off-by: Jean-Christophe Sirot <jean-christophe.sirot@docker.com>
2019-09-16 15:52:08 +02:00
Djordje Lukic
cef9f764c1
Remove the strict flag
...
Signed-off-by: Djordje Lukic <djordje.lukic@docker.com>
2019-09-16 15:13:38 +02:00
Jean-Christophe Sirot
78a90f020b
Remove 3rd party software integrations directory and related build steps from codebase
...
Signed-off-by: Jean-Christophe Sirot <jean-christophe.sirot@docker.com>
2019-09-16 11:35:41 +02:00
Ulysses Souza
c9eb813930
Merge pull request #608 from ndeloof/nosingle
...
Remove support for "single file" app definition
2019-09-13 10:43:56 +02:00
Chris Crone
93626e0aa7
Merge pull request #598 from zelahi/integrate-fossa-scans-pre-commit
...
[TAR-995 ]ADDED License scan stage to occur pre-commit in Jenkins
2019-09-13 08:30:13 +02:00
Chris Crone
ab21570f8a
Merge pull request #606 from ndeloof/goproxy
...
Configure GOPROXY
2019-09-13 08:28:22 +02:00
Zuhayr Elahi
95438afc52
Changed to use same creds as public Jenkins
...
Signed-off-by: Zuhayr Elahi <elahi.zuhayr@gmail.com>
2019-09-12 15:46:31 -07:00
Zuhayr Elahi
8c5c7b360d
MOVED FOSSA_API_KEY to use as credentials instead of in environment
...
block
Signed-off-by: Zuhayr Elahi <elahi.zuhayr@gmail.com>
2019-09-12 12:33:32 -07:00
Zuhayr Elahi
c2c17e63f9
REMOVED class for password
...
Signed-off-by: Zuhayr Elahi <elahi.zuhayr@gmail.com>
2019-09-12 09:41:37 -07:00
Anca Iordache
83f43bd480
APP-179 Simplify templating of docker app ( #602 )
...
* parameter substitution using string replace instead of compose functions
Signed-off-by: Anca Iordache <anca.iordache@docker.com>
Co-authored-by: Silvin Lubecki <silvin.lubecki@gmail.com>
2019-09-11 15:23:31 +02:00
Nicolas De Loof
be84671409
Some more obsolete code
...
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
2019-09-10 11:16:35 +02:00
Nicolas De loof
daee95392e
Remove `completion` command ( #607 )
...
* Remove `completion` command
* Bump cobra dependency for better zsh completion
`docker app completion` is not consistent with docker CLI
replaced by `--completion` flag (hidden)
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
2019-09-09 17:49:57 +02:00
Nicolas De Loof
590a3ddd08
cleanup
...
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
2019-09-09 14:38:43 +02:00
Nicolas De Loof
b3e8a21c07
linter
...
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
2019-09-09 14:12:45 +02:00
Nicolas De Loof
bba98f5397
Remove support for "single file" app definition
...
Use of such a multi-document yaml file with required ordering is mostly
confusing
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
2019-09-09 12:46:20 +02:00
Nicolas De Loof
5234af7c36
Configure GOPROXY for direct downloads
...
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
2019-09-04 09:51:40 +02:00
Silvin Lubecki
964210ee88
Merge pull request #600 from aiordache/app_190_inconsistent_output_time
...
APP-190 -- Updated status/list output times (added 'ago' at the end)
2019-09-02 18:08:19 +02:00
Chris Crone
2c66384347
Merge pull request #603 from psftw/jenkinsfile-tweaks
...
Jenkinsfile tweaks.
2019-08-30 21:36:19 +02:00
Peter Salvatore
006aa34745
Jenkinsfile tweaks.
...
* Move to a newer agent type which should perform
better.
* Set default timeout of 1hr in case of stuck
jobs.
Signed-off-by: Peter Salvatore <peter@psftw.com>
2019-08-30 13:55:10 -04:00
Anca Iordache
d99ac99e91
Updated status/list output times (added 'ago' at the end)
...
Signed-off-by: Anca Iordache <anca.iordache@docker.com>
2019-08-28 10:48:09 +02:00
Jean-Christophe Sirot
962230a4e2
Merge pull request #599 from rumpl/verbose-stderr
...
Don't print logs when "-o -" flag is set
2019-08-27 10:39:50 +02:00
Zuhayr Elahi
2b33692de8
Removed dependencies from .fossa file and turned on GOMODULE
...
Signed-off-by: Zuhayr Elahi <elahi.zuhayr@gmail.com>
2019-08-26 15:36:59 -07:00
Zuhayr Elahi
814df63285
ADDED hub credentials for downloading fossa-image
...
Signed-off-by: Zuhayr Elahi <elahi.zuhayr@gmail.com>
2019-08-26 11:21:57 -07:00
Zuhayr Elahi
f1a8f73566
Migrated fossa scans to private Jenkins
...
Signed-off-by: Zuhayr Elahi <elahi.zuhayr@gmail.com>
2019-08-26 10:51:02 -07:00
Djordje Lukic
5c2143dee6
Only print the bundle if "-o -" is given
...
Signed-off-by: Djordje Lukic <djordje.lukic@docker.com>
2019-08-26 18:18:39 +02:00
Jean-Christophe Sirot
8dcf633da0
Merge pull request #596 from rumpl/update-deps
...
Update cnab-to-oci and cnab-go to latest
2019-08-26 12:13:57 +02:00
Djordje Lukic
15c4595296
Cleanup unused function
...
Signed-off-by: Djordje Lukic <djordje.lukic@docker.com>
2019-08-26 10:27:44 +02:00
Zuhayr Elahi
770325ba85
Moved License Scan to Validate stage
...
Signed-off-by: Zuhayr Elahi <elahi.zuhayr@gmail.com>
2019-08-23 15:40:58 -07:00
Zuhayr Elahi
963997c497
ADDED License scan stage to occur pre-commit in Jenkins
...
Signed-off-by: Zuhayr Elahi <elahi.zuhayr@gmail.com>
2019-08-23 13:56:27 -07:00
Jean-Christophe Sirot
a8e078d53a
Merge pull request #597 from ulyssessouza/nsfod_envfile
...
Fix 'env_file' retrieval by using app.Path as WorkingDir in the render action
2019-08-22 18:07:44 +02:00
Ulysses Souza
f6dc9387a1
Fix env_file retrieval by using app.Path as WorkingDir
...
Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
2019-08-22 11:40:03 +02:00
Jean-Christophe Sirot
925c394e19
Merge pull request #595 from ndeloof/master
...
os.ModeIrregular require go 1.11
2019-08-21 17:33:34 +02:00
Djordje Lukic
6f5f3154d0
Update cnab-to-oci and cnab-go to latest
...
Signed-off-by: Djordje Lukic <djordje.lukic@docker.com>
2019-08-21 17:16:45 +02:00