Skip to content

Commit 1c86d70

Browse files
committed
some refactoring
1 parent 45ed9b6 commit 1c86d70

17 files changed

+92
-44
lines changed

.env.template

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
PORT=3000
22
# git deployment key's
3-
GIT_DEPLOYMENTKEY_PUBLIC=deployment.key
4-
GIT_DEPLOYMENTKEY_PRIVATE=deployment.key
3+
GIT_DEPLOYMENTKEY_PUBLIC=
4+
GIT_DEPLOYMENTKEY_PRIVATE_B64=
55

66
# Github webhook configuration
77
GITHUB_WEBHOOK_URL=https://
88
GITHUB_WEBHOOK_SECRET=mysecret
99

10-
KUBECONFIG_PATH=$(pwd)/kubeconfig
10+
KUBECONFIG_PATH=./kubeconfig
1111
KUBERO_CONFIG_PATH=./config.yaml
12+
KUBERO_CONTEXT=kind-kubero
13+
KUBERO_NAMESPACE=keroku

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ node_modules
77
notes.txt
88
kubeconfig
99

10-
example-*.json
10+
example-*.json
11+
12+
*.log

client/src/App.vue

+4-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<router-view></router-view>
3838
</v-main>
3939

40-
<Appfooter :swarmversion="status.swarmversion" :kubeversion="status.kubeVersion.gitVersion" />
40+
<!--<Appfooter :swarmversion="status.swarmversion" :kubeversion="status.kubeVersion.gitVersion" />-->
4141
</v-app>
4242
</template>
4343

@@ -50,13 +50,15 @@
5050

5151
<script>
5252
//import axios from "axios";
53-
import Appfooter from "./components/appfooter.vue";
53+
//import Appfooter from "./components/appfooter.vue";
5454
5555
export default {
5656
name: "App",
57+
/*
5758
components: {
5859
Appfooter
5960
},
61+
*/
6062
mounted() {
6163
/*
6264
axios

client/src/components/apps/logs.vue

+13-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</v-row>
1010
<v-row style="height: 100%">
1111
<v-col cols="12" sm="12" md="10">
12-
<div class="console">
12+
<div class="console" id="console">
1313
<div v-for="line in loglines" :key="line.id">{{ new Date(line.time).toISOString()}}[{{ line.podID }}/{{ line.container.replace('kuberoapp-', '') }}] {{ line.log }}</div>
1414
</div>
1515
</v-col>
@@ -24,7 +24,14 @@ export default {
2424
sockets: {
2525
log: function(data) {
2626
console.log(data);
27+
this.loglines.unshift(data)
28+
/*
29+
NOT Need
30+
display: flex;
31+
flex-direction: column-reverse;
32+
2733
this.loglines.push(data);
34+
*/
2835
},
2936
},
3037
mounted() {
@@ -96,10 +103,14 @@ export default {
96103
<style lang="scss">
97104
.console {
98105
height: 100%;
99-
overflow-y: scroll;
106+
max-height: 1000px;
107+
overflow-x: scroll;
100108
background-color: #333;
101109
color: #c0c0c0;
102110
padding: 5px;
103111
font: 0.85rem Inconsolata, monospace;
112+
113+
display: flex;
114+
flex-direction: column-reverse;
104115
}
105116
</style>

client/src/components/pipelines/appcard.vue

+27-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
<template>
22
<v-card
3+
:loading="loadingState"
34
class="mt-5"
45
outlined
56
elevation="2"
67
color="#fafafa"
78
>
89

10+
<template slot="progress">
11+
<v-progress-linear
12+
color="primary"
13+
height="2"
14+
indeterminate
15+
></v-progress-linear>
16+
</template>
17+
918
<v-card-title><a :href="'/#/pipeline/'+pipeline+'/'+phase+'/'+app">{{ this.app }}</a></v-card-title>
1019

1120
<v-card-text>
@@ -31,6 +40,7 @@
3140
v-if="this.domain"
3241
color="deep-purple lighten-2"
3342
text
43+
@click="restartApp()"
3444
>
3545
<v-icon
3646
>mdi-reload-alert
@@ -60,6 +70,7 @@
6070
</template>
6171

6272
<script>
73+
import axios from "axios";
6374
export default {
6475
props: {
6576
pipeline: {
@@ -103,8 +114,23 @@ export default {
103114
type: Boolean,
104115
default: false
105116
}
117+
},
118+
data: () => ({
119+
loadingState: false,
120+
}),
121+
methods: {
122+
restartApp() {
123+
axios.get(`/api/pipelines/${this.pipeline}/${this.phase}/${this.app}/restart`)
124+
.then(response => {
125+
console.log(response);
126+
this.loadingState = true;
127+
})
128+
.catch(error => {
129+
console.log(error);
130+
});
131+
}
106132
}
107-
}
133+
}
108134
</script>
109135

110136
<style>

client/src/components/pipelines/new.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<v-container>
44
<v-row>
55
<v-col cols="12" sm="12" md="12" lg="12" xl="12">
6-
<div class="subtitle-1">
6+
<h2>
77
Create a new Pipeline
8-
</div>
8+
</h2>
99
<p class="text-justify">
1010
A Pipeline may have several stages with apps
1111
</p>

src/addons/postgresql-crunchy.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { IAddon, IAddonFormFields } from '../addons';
1+
import { IAddon, IAddonFormFields } from '../modules/addons';
22

33
export class CrunchyPostgresqlCluster implements IAddon {
44
public id: string = 'postgresql-cluster';

src/addons/redis.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { IAddon, IAddonFormFields } from '../addons';
1+
import { IAddon, IAddonFormFields } from '../modules/addons';
22

33
export class RedisCluster implements IAddon {
44
public id: string = 'redis-cluster';

src/charts/namespace.ts

-8
This file was deleted.

src/configure.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import bodyParser from 'body-parser';
55
import { Router } from "./routes";
66
import { init } from './socket'
77
import { Keroku } from './keroku';
8-
import { Addons } from './addons';
8+
import { Addons } from './modules/addons';
99

1010
export const before = (app: Express) => {
1111
app.use(cors())

src/keroku.ts

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import debug from 'debug';
22
import { Server } from "socket.io";
33
import { IApp, IPipeline, IKubectlAppList, IKubectlPipelineList, IPodSize, IKuberoConfig} from './types';
4-
import { App } from './types/application';
4+
import { App } from './modules/application';
55
import { GithubApi } from './github/api';
6-
import { IAddon, IAddonMinimal } from './addons';
6+
import { IAddon, IAddonMinimal } from './modules/addons';
77
import * as crypto from "crypto"
88
import set from 'lodash.set';
99
import YAML from 'yaml';
@@ -15,7 +15,7 @@ import { Stream } from 'stream';
1515

1616
debug('app:keroku')
1717

18-
import { Kubectl } from './kubectl';
18+
import { Kubectl } from './modules/kubectl';
1919
import { throws } from 'assert';
2020

2121
export class Keroku {
@@ -275,14 +275,16 @@ export class Keroku {
275275
debug.debug('restart App: '+appName+' in '+ pipelineName+' phase: '+phaseName);
276276
const contextName = this.getContext(pipelineName, phaseName);
277277
if (contextName) {
278-
this.kubectl.restartApp(pipelineName, phaseName, appName, contextName);
278+
this.kubectl.restartApp(pipelineName, phaseName, appName, 'web', contextName);
279+
this.kubectl.restartApp(pipelineName, phaseName, appName, 'worker', contextName);
280+
279281
let message = {
280282
'action': 'restarted',
281283
'pipeline':pipelineName,
282284
'phase':phaseName,
283285
'app': appName
284286
}
285-
this._io.emit('updatedApps', message);
287+
//this._io.emit('restartedApp', message);
286288
}
287289
}
288290
/*

src/addons.ts src/modules/addons.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import debug from 'debug';
22
debug('app:addons')
33
import { Kubectl } from './kubectl';
44
import { KubernetesListObject, KubernetesObject } from '@kubernetes/client-node'
5-
import { RedisCluster, Redis} from './addons/redis';
6-
import { CrunchyPostgresqlCluster} from './addons/postgresql-crunchy';
5+
import { RedisCluster, Redis} from '../addons/redis';
6+
import { CrunchyPostgresqlCluster} from '../addons/postgresql-crunchy';
77

88
export interface AddonOptions {
99
kubectl: Kubectl;

src/types/application.ts src/modules/application.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
import { IApp, IKubectlMetadata, IKubectlApp, IGithubRepository, ICronjob, IPodSize} from '../types';
3-
import { IAddon } from '../addons';
3+
import { IAddon } from './addons';
44

55
export class KubectlApp implements IKubectlApp{
66
apiVersion: string;

src/kubectl.ts src/modules/kubectl.ts

+19-10
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ import {
1313
PatchUtils,
1414
Log as KubeLog,
1515
V1Pod,
16+
V1Namespace,
1617
} from '@kubernetes/client-node'
17-
import { namespace as namespace_chart} from './charts/namespace';
18-
import { IPipeline, IKubectlPipeline, IKubectlPipelineList, IKubectlAppList} from './types';
19-
import { App, KubectlApp } from './types/application';
20-
import { KubectlPipeline } from './types/pipeline';
18+
import { IPipeline, IKubectlPipeline, IKubectlPipelineList, IKubectlAppList} from '../types';
19+
import { App, KubectlApp } from './application';
20+
import { KubectlPipeline } from './pipeline';
2121
import { IAddon, IAddonMinimal } from './addons';
2222

2323

@@ -161,10 +161,16 @@ export class Kubectl {
161161
console.log("create namespace ");
162162

163163
try {
164-
namespace_chart.metadata.name = ns_name;
165-
console.log(namespace_chart);
164+
let ns = new V1Namespace();
165+
ns.metadata = {
166+
name: ns_name,
167+
labels: {
168+
"managed-by": "kubero"
169+
}
170+
}
171+
console.log(ns);
166172
this.kc.setCurrentContext(context);
167-
const ret = await this.coreV1Api.createNamespace(namespace_chart);
173+
const ret = await this.coreV1Api.createNamespace(ns);
168174
//debug.debug(ret);
169175
} catch (error) {
170176
debug.log(error);
@@ -284,11 +290,11 @@ export class Kubectl {
284290
return appslist.body as IKubectlAppList;
285291
}
286292

287-
public async restartApp(pipelineName: string, phaseName: string, appName: string, context: string) {
293+
public async restartApp(pipelineName: string, phaseName: string, appName: string, workloadType: string, context: string) {
288294
this.kc.setCurrentContext(context);
289295

290296
let namespace = pipelineName+'-'+phaseName;
291-
let deploymentName = appName+'-kuberoapp';
297+
let deploymentName = appName+'-kuberoapp-'+workloadType;
292298
const date = new Date();
293299

294300
// format : https://jsonpatch.com/
@@ -315,7 +321,10 @@ export class Kubectl {
315321
).then(() => {
316322
console.log(`Deployment ${deploymentName} in Pipeline ${namespace} updated`);
317323
}).catch(error => {
318-
debug.log('ERROR: '+error.body.message);
324+
if (error.body.message) {
325+
debug.log('ERROR: '+error.body.message);
326+
}
327+
debug.log('ERROR: '+error);
319328
});
320329
};
321330

File renamed without changes.

src/routes.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import express, { Express, Request, Response } from 'express';
22
import { IApp, IPipeline } from './types';
3-
import { App } from './types/application';
4-
import { IAddonMinimal } from './addons';
3+
import { App } from './modules/application';
4+
import { IAddonMinimal } from './modules/addons';
55

66
export const Router = express.Router();
77

src/types.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { IAddon } from './addons';
1+
import { IAddon } from './modules/addons';
22
export interface IApp {
33
name: string,
44
pipeline: string,
@@ -127,11 +127,13 @@ export interface IPipelinePhase {
127127
apps: IApp[];
128128
}
129129

130+
// TODO replace with default kubeclt Interface
130131
export interface IKubectlMetadata {
131-
creationTimestamp?: string;
132+
creationTimestamp?: Date;
132133
generation?: number;
133134
//labels?: [Object];
134135
labels?: {
136+
'kubernetes.io/metadata.name'?: String,
135137
manager?: string;
136138
}
137139
managedFields?: [Array: Object];

0 commit comments

Comments
 (0)