gofabric8 is used to validate & deploy fabric8 components on to your Kubernetes or OpenShift environment
Find more information at http://fabric8.io.
Get the latest gofabric8
or use the following script to download it.
curl -sS https://get.fabric8.io/download.txt | bash
add '~/.fabric8/bin' to your path so you can execute the new binaries, for example: edit your ~/.zshrc or ~/.bashrc and append to the end of the file
export PATH=$PATH:~/.fabric8/bin
source ~/.zshrc or ~/.bashrc
gofabric8 install
NOTE currently the latest version of minishift that fabric8 currently runs on is 0.9.0
gofabric8 install --minishift
To install the fabric8 microservices platform then run the following:
gofabric8 deploy
If you are deploying to a remote OpenShift instance make sure to set the domain so we can generate Toutes to access applications
gofabric8 deploy --domain=your.domain.io
When developing locally and using a single VM its really handy to reuse the Docker daemon inside the VM; as this means you don't have to build on your host machine and push the image into a docker registry - you can just build inside the same docker daemon as minikube which speeds up local experiments.
To be able to work with the docker daemon on your mac/linux host use the docker-env command in your shell:
eval $(gofabric8 docker-env)
you should now be able to use docker on the command line on your host mac/linux machine talking to the docker daemon inside the minikube VM:
docker ps
Remember to turn off the imagePullPolicy:Always, as otherwise kubernetes won't use images you built locally.
When deploying, by default the latest release version is used. In order to deploy a specific version you can use the various--version-xxxx
flags as detailed under
gofabric8 deploy help
gofabric8 help
gofabric8 is used to validate & deploy fabric8 components on to your Kubernetes or OpenShift environment
Find more information at http://fabric8.io.
Usage:
gofabric8 [flags]
gofabric8 [command]
Available Commands:
console Open the fabric8 console
deploy Deploy fabric8 to your Kubernetes or OpenShift environment
docker-env Sets up docker env variables; Usage 'eval $(gofabric8 docker-env)'
ingress Creates any missing Ingress resources for services
install Installs the dependencies to locally run the fabric8 microservices platform
pull Pulls the docker images for the given templates
routes Creates any missing Routes for services
run Runs a fabric8 microservice from one of the installed templates
secrets Set up Secrets on your Kubernetes or OpenShift environment
service Opens the specified Kubernetes service in your browser
start Starts a local cloud development environment
validate Validate your Kubernetes or OpenShift environment
version Display version & exit
volumes Creates a persisent volume for any pending persistance volume claims
Flags:
--as string Username to impersonate for the operation.
-b, --batch Run in batch mode to avoid prompts
--certificate-authority string Path to a cert. file for the certificate authority.
--client-certificate string Path to a client certificate file for TLS.
--client-key string Path to a client key file for TLS.
--cluster string The name of the kubeconfig cluster to use
--context string The name of the kubeconfig context to use
--fabric8-version string fabric8 version (default "latest")
--insecure-skip-tls-verify If true, the server's certificate will not be checked for validity. This will make your HTTPS connections insecure.
--kubeconfig string Path to the kubeconfig file to use for CLI requests.
--log-flush-frequency duration Maximum number of seconds between log flushes (default 5s)
--match-server-version Require server version to match client version
--namespace string If present, the namespace scope for this CLI request.
--password string Password for basic authentication to the API server.
-s, --server string The address and port of the Kubernetes API server
--token string Bearer token for authentication to the API server.
--user string The name of the kubeconfig user to use
--username string Username for basic authentication to the API server.
-y, --yes assume yes
Use "gofabric8 [command] --help" for more information about a command.
gofabric8
provides shell completions, so you can easily complete commands while in the shell.
Simply add this to your ~/.bashrc
if you use bash :
source <(gofabric8 completion bash)
or to your ~/.zshrc
if you use zsh ::
source <(gofabric8 completion zsh)
Install go version 1.7.4
git clone [email protected]:fabric8io/gofabric8.git $GOPATH/src/github.com/fabric8io/gofabric8
make
Make changes to *.go files, rerun make
and execute the generated binary
e.g.
./build/gofabric8 deploy