kubernetes native api agent for the web UI dashboard
- 将k8s的API返回的复杂数据的处理放到后端进行
- 避免出现跨域请求拒绝的问题,方便 dashboard 的开发工作
Python == 2.7.10
Django == 1.6.2
MySQL-python
- k8s原生服务地址
K8S_IP = '172.24.3.150'
K8S_PORT = 8080
- BDMS数据源
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'bdms_web',
'USER': 'xxx',
'PASSWORD': 'xxx',
'HOST': 'xxx',
'PORT': '3306',
}
}