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 @@ -307,15 +307,21 @@ export class Kubectl {
307307
308308 public async getOperators ( ) {
309309 // TODO list operators from all clusters
310- let response = await this . customObjectsApi . listNamespacedCustomObject (
311- 'operators.coreos.com' ,
312- 'v1alpha1' ,
313- 'operators' ,
314- 'clusterserviceversions'
315- )
310+ let operators = { items : [ ] } ;
311+ try {
312+ let response = await this . customObjectsApi . listNamespacedCustomObject (
313+ 'operators.coreos.com' ,
314+ 'v1alpha1' ,
315+ 'operators' ,
316+ 'clusterserviceversions'
317+ )
318+ //let operators = response.body as KubernetesListObject<KubernetesObject>;
319+ operators = response . body as any // TODO : fix type. This is a hacky way to get the type to work
320+ } catch ( error ) {
321+ debug . log ( error ) ;
322+ debug . log ( "error getting operators" ) ;
323+ }
316324
317- //let operators = response.body as KubernetesListObject<KubernetesObject>;
318- let operators = response . body as any // TODO : fix type. This is a hacky way to get the type to work
319325 return operators . items ;
320326 }
321327
You can’t perform that action at this time.
0 commit comments