Commit Graph

121 Commits

Author SHA1 Message Date
Charlie Drage
c1f18136d3
Merge pull request #896 from Code0x58/add-ingress-tls
Add kompose.service.expose.tls-secret
2017-12-20 10:51:04 -05:00
Charlie Drage
e6a40eb5c9
Merge pull request #805 from ashetty1/issue_770
Script for generating unit tests
2017-12-19 11:07:15 -05:00
Oliver Bristow
35a782024d Add kompose.service.expose.tls-secret 2017-12-18 15:56:38 +00:00
Charlie Drage
01c4f7beb2 1.6.0 Release 2017-12-11 13:50:50 -05:00
Suraj Narwade
83ffd328d9 Fixed conversion matrix
Updated conversion matrix as cpus under deploy.resources in docker compose v3 are supported now
2017-12-05 17:03:59 +05:30
Charlie Drage
b953844cf3 n -> ✓ for build v3 support
✓ for build v3 support since we merged in
https://github.com/kubernetes/kompose/pull/846/
2017-11-30 10:04:26 -05:00
Charlie Drage
7496662ff3 Update conversion doc for env_file
Updates the conversion doc to indicate that we support env_file

Closes https://github.com/kubernetes/kompose/issues/873
2017-11-22 12:01:52 -05:00
Charlie Drage
a2575df355 1.5.0 Release 2017-11-21 11:22:21 -05:00
Anatoli Babenia
c8efd1511d
architecture.md Link sources 2017-11-08 13:01:00 +02:00
xianlubird
c717cbd65d Fix typo
Signed-off-by: xianlu <xianlu.cxl@alibaba-inc.com>
2017-11-07 17:39:44 +08:00
Charlie Drage
e5b1f02b5e Add TOC to documentation, add readme.md notice
Adds TOC to architecture.md, getting-started.md, integrations.md and
user-guide.md

Updates README.md to add a notice that the files are best viewed on the
website.
2017-11-06 10:55:04 -05:00
Charlie Drage
79b5a02729 1.4.0 Release 2017-10-31 16:47:47 -04:00
Anush Shetty
7bb67675f4 Script for generating CLI tests:
* Made an entry in the Makefile: `make gen-cmd` will run the script now

* Added a section on adding CLI tests in development docs
2017-10-30 14:29:18 +05:30
piyush
4d30969041 Fix Redirecting Error in README.md
Setup and Quickstart file are giving 404 as they were renamed
to installation and getting-started repectively.
Renamed the same in README.md to fix redirecting.
Fixes #845
2017-10-12 14:12:08 +05:30
piyush
5c8d831b02 Fix Redirecting Error
This wil fix the redirecting issue to quickstart in integrations.md
and to kompose installation in maven-example.md
Fixes #844
2017-10-11 20:54:50 +05:30
Charlie Drage
903acfdbbf Merge pull request #836 from piyush1594/docs-update
Added Fabric8 Maven Plugin in Integration
2017-10-10 15:57:23 -04:00
Charlie Drage
c27bbc223c 1.3.0 Release 2017-10-10 15:24:44 -04:00
Charlie Drage
a61936f055 Update getting started guide docs
Updates the getting started docs to reflect the three different guides.
2017-10-10 09:02:58 -04:00
Piyush
d0fff4c85d Added Fabric8 Maven Plugin in Integration
Fixed typo

Updated documents

Updated integrations.md and maven-example.md

Added output for commands and some minor updates

Added coomand to access service and minor updates

Fixed minor typing errors

Added screenshot of output

Added output image in image folder and minor typing errors

Fixed typo

Updated minor typos
2017-10-09 18:09:06 +05:30
Charlie Drage
073547014c Merge pull request #813 from surajnarwade/placementv3
Added feature for `placement` key in v3
2017-10-06 10:20:33 -04:00
Suraj Narwade
35198cca12 Added feature for placement key in v3
it will map `engine.labels.operatingsystem` to `beta.kubernetes.io/os` and
`node.hostname` to `kubernetes.io/hostname` and all other constraints will not be supported.
2017-10-06 12:22:14 +05:30
Charlie Drage
5605cb0e54 Add Getting Started guide, adds Minishift tutorial
Updates the getting started guide as well as introduces an
"introduction" page for Kompose.

Adds a Minishift guide as well as a general update to all documentation.
2017-10-05 09:36:53 -04:00
Charlie Drage
7908d73652 1.2.0 Release 2017-09-18 14:38:34 -04:00
Charlie Drage
e555d111a5 1.1.0 Release 2017-08-30 11:38:56 -04:00
Charlie Drage
5f89e1a9ab Merge pull request #780 from cdrage/update-dev-guide
Update the dev guide with CI details
2017-08-29 09:25:58 -04:00
Charlie Drage
b1f234154a Update to lowercase in conversion.md
Makes the table a little less clustered with lowercase abbreviations.
2017-08-28 10:50:40 -04:00
Shubham
4f6b92f6c8 Merge pull request #759 from cdrage/add-healthcheck
Adds healthcheck
2017-08-27 09:09:54 +05:30
Charlie Drage
8e6a148dc6 Merge pull request #785 from cdrage/add-bintray
Add Bintray documentation to README and installation doc
2017-08-25 15:29:03 -04:00
Jad Chamoun
188edeaf48 Fix kompose docker container wrong href
The link was pointing to komposeui instead of kompose-docker
2017-08-25 12:18:32 -07:00
Charlie Drage
912f1feed2 Add Bintray documentation to README and installation doc
Adds information on nightly builds to the README and installation
document.
2017-08-25 10:08:55 -04:00
Charlie Drage
2e99b8fd3a Adds healthcheck
This PR adds support for HealthCheck, being able to supply, for example:

```yaml
version: "3"

services:
  redis:
    image: redis
    healthcheck:
      test: echo "hello world"
      interval: 10s
      timeout: 1s
      retries: 5
```

Which is then converted to:

```yaml
spec:
  containers:
  - image: redis
    livenessProbe:
      exec:
        command:
        - echo "hello world"
      failureThreshold: 5
      periodSeconds: 10
      timeoutSeconds: 1
    name: redis
    resources: {}
  restartPolicy: Always
```

At the moment, this only supports livenessProbe, with support for readinessProbe in the future.
2017-08-25 10:02:51 -04:00
Charlie Drage
6a1d18c744 Update the dev guide with CI details
Updates the development.md doc with details on what CI's we use.
2017-08-23 12:11:06 -04:00
Charlie Drage
ca46d6a83b Update conversion matrix with windows notes
Moves one of the notes as well as updates credentials_spec
2017-08-21 10:30:25 -04:00
Charlie Drage
7e4a2ea77d Adds a more "full" conversion document
This majorly updates the conversion document in order to have version
compatibile checks with V1, V2 and V3 of Docker Compose and Kompose
support.
2017-08-17 16:07:43 -04:00
Mohammad Asif Siddiqui
aea1f7e149 Fix minor typo 2017-08-17 01:57:36 +08:00
Charlie Drage
73a9f7935d Update docs to reflect conversion changes
Updates the doc due to the recent changes to deploy keys as well as
other mappings.
2017-08-08 10:43:31 -04:00
Charlie Drage
1867808582 Merge pull request #741 from cdrage/update-the-readme
Update installation instructions
2017-08-07 13:16:13 -04:00
Jad Chamoun
3feb49dace Add author to Kompose UI 2017-08-02 16:50:50 -07:00
Charlie Drage
1ea4f6a83e Update installation instructions
Updates the install instructions on the README and installation.md guide
2017-08-02 10:20:37 -04:00
Charlie Drage
90dee86c4c Update integrations links
Jekyll doesn't support automatically linking, so we have to manually add
the links here.
2017-08-02 10:11:05 -04:00
Charlie Drage
44f76ac98c Merge pull request #736 from cdrage/add-integrations
Add integration doc
2017-08-02 09:51:38 -04:00
Charlie Drage
816301c382 Merge pull request #728 from cdrage/update-conversion-doc
Updates the conversion document to reflect changes
2017-08-02 09:50:46 -04:00
Charlie Drage
e2eb51417e Add integration doc
Adds an integration document that lists third-party organizations /
users that use Kompose in some-way or another.
2017-08-02 09:49:50 -04:00
Charlie Drage
e38f50090d Add Windows instructions to installation.md 2017-08-01 12:40:33 -04:00
Charlie Drage
982e54ecb7 Updates the conversion document to reflect changes
This updates the conversion document to outline that we do not support
minor versions since libcompose does not support 2.1 or 2.2 as well as
constant changes to docker/cli stack code regarding 3.1 and above.

I also update the conversion document to better reflect our support on
version 3 as well as update current values.
2017-07-26 15:48:38 -04:00
Charlie Drage
90a89b6826 1.0.0 Release 2017-07-20 11:54:54 -04:00
Charlie Drage
6b967fb367 Merge pull request #720 from cdrage/re-add-money-symbol
Adds clarification on commands
2017-07-20 09:16:40 -04:00
Charlie Drage
8e70d89ff7 Adds clarification on commands
Re-adds '$' to commands
2017-07-19 13:06:12 -04:00
Charlie Drage
8181018a9d Merge pull request #706 from e-minguez/fedora_26
Added Fedora 26
2017-07-14 14:47:02 -04:00
Charlie Drage
667c63d620 Conversion Reference -> Conversion Matrix
Initialize a documentation build (running the script on travis) as well
as change from Conversion Reference to Conversion Matrix.
2017-07-13 15:01:13 -04:00