File tree Expand file tree Collapse file tree 4 files changed +18
-12
lines changed Expand file tree Collapse file tree 4 files changed +18
-12
lines changed Original file line number Diff line number Diff line change 11kubero :
22 context : kind-kubero
33 namespace : kubero
4- port : 3000
4+ port : 2000
55buildpacks :
66 - name : NodeJS
77 language : JavaScript
@@ -85,7 +85,7 @@ buildpacks:
8585 repository : webdevops/nginx
8686 tag : alpine
8787 command : " supervisord"
88- podSizeList :
88+ podSizeList :
8989- name : small
9090 description : ' Small (CPU: 0.25, Memory: 0.5Gi)'
9191 default : true
Original file line number Diff line number Diff line change 11{
22 "name" : " kubero" ,
3- "version" : " 1.5.0 " ,
3+ "version" : " 1.5.3 " ,
44 "description" : " Heroku clone on Kubernetes" ,
55 "main" : " dist/index.js" ,
66 "author" : " Gianni Carafa" ,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ debug('app:server')
1212
1313const app : Express = express ( ) ;
1414const server = http . createServer ( app )
15- const port : String = process . env . PORT || "3000 " ;
15+ const port : String = process . env . PORT || "2000 " ;
1616
1717// API
1818before ( app ) ;
Original file line number Diff line number Diff line change @@ -290,15 +290,21 @@ export class Kubectl {
290290
291291 public async getOperators ( ) {
292292 // TODO list operators from all clusters
293- let response = await this . customObjectsApi . listNamespacedCustomObject (
294- 'operators.coreos.com' ,
295- 'v1alpha1' ,
296- 'operators' ,
297- 'clusterserviceversions'
298- )
293+ let operators = { items : [ ] } ;
294+ try {
295+ let response = await this . customObjectsApi . listNamespacedCustomObject (
296+ 'operators.coreos.com' ,
297+ 'v1alpha1' ,
298+ 'operators' ,
299+ 'clusterserviceversions'
300+ )
301+ //let operators = response.body as KubernetesListObject<KubernetesObject>;
302+ operators = response . body as any // TODO : fix type. This is a hacky way to get the type to work
303+ } catch ( error ) {
304+ debug . log ( error ) ;
305+ debug . log ( "error getting operators" ) ;
306+ }
299307
300- //let operators = response.body as KubernetesListObject<KubernetesObject>;
301- let operators = response . body as any // TODO : fix type. This is a hacky way to get the type to work
302308 return operators . items ;
303309 }
304310
You can’t perform that action at this time.
0 commit comments