You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
Linda 980e070e09
修改数据管理页面样式
8 years ago
app V_1.3.0 9 years ago
d.ts 数据管理页面的样式修改 8 years ago
dist 数据管理页面的样式修改 8 years ago
img 数据管理页面的样式修改 8 years ago
new 修改数据管理页面样式 8 years ago
osconsole 数据管理页面的样式修改 8 years ago
plugins 修改数据管理页面样式 8 years ago
.bowerrc “V_1.0” 9 years ago
.gitignore “V_1.0” 9 years ago
Dockerfile “V_1.0” 9 years ago
LICENSE.txt “V_1.0” 9 years ago
ReadMe.md “V_1.0” 9 years ago
bower.json “V_1.0” 9 years ago
circle.yml “V_1.0” 9 years ago
data_manager.rar 修改数据管理页面样式 8 years ago
defs.d.ts 修复数据分页显示bug 8 years ago
gulpfile.js 数据管理页面的样式修改 8 years ago
hawtio-kubernetes.iml 数据管理页面的样式修改 8 years ago
index.html 数据管理页面的样式修改 8 years ago
my.js “V_1.0” 9 years ago
package.json 数据管理页面的样式修改 8 years ago
resumable-node.js 数据管理页面的样式修改 8 years ago

ReadMe.md

hawtio-kubernetes Circle CI

This plugin provides a Kubernetes console for hawtio

controllers tab screenshot

Running

Running a release

If you have a Kubernetes or OpenShift environment, the easiest way to try out this console is to just run the app directly in kubernetes via these instructions

Or you can try running the fabric8/hawtio-kubernetes docker image:

docker pull fabric8/hawtio-kubernetes
docker run -it -p 9090:9090 -e KUBERNETES_SERVICE_HOST=$DOCKER_IP fabric8/hawtio-kubernetes

Where DOCKER_IP is the IP address or host running the kubernetes master.

Running this plugin locally

First clone the source

git clone https://github.com/hawtio/hawtio-kubernetes.git
cd hawtio-kubernetes

Next you'll need to install NodeJS and then install the default global npm dependencies:

npm install -g bower gulp slush slush-hawtio-javascript slush-hawtio-typescript typescript

Then install all local nodejs packages and update bower dependencies via:

npm install
bower update

Next you need to setup the KUBERNETES_MASTER environment variable to point to the kubernetes master you want to run against. e.g.

export KUBERNETES_MASTER=https://$DOCKER_IP:8443

Where DOCKER_IP is the IP address or host running the kubernetes master.

If you need to disable OAUTH authentication in development try use DISABLE_OAUTH:

export DISABLE_OAUTH=true

Then to run the web application:

gulp

Install the bower package

bower install --save hawtio-kubernetes

Output build to a different directory

When developing this plugin in a dependent console you can change the output directory where the compiled .js and .css go. Just use the 'out' flag to set a different output directory, for example:

gulp watch --out=../fabric8-console/libs/hawtio-kubernetes/dist/

Whenever the build completes the compiled .js file will be put into the target directory. Don't forget to first do a gulp build without this flag before committing changes!