Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
dedc0b4
backend: Sortby slice to string
wilhelmguo Nov 29, 2018
5fb93f0
backend: base api pageSize and pageNo must bigger than zero
wilhelmguo Nov 29, 2018
50ca792
backend: add kubernetes resource dataselector for backend paging
wilhelmguo Nov 29, 2018
5c26fcd
backend: add kubernetes deployment list
wilhelmguo Nov 29, 2018
2d9c02b
backend: abstraction base controller
wilhelmguo Nov 30, 2018
2f75143
Merge branch 'master' of github.com:Qihoo360/wayne into feature/add_k…
wilhelmguo Nov 30, 2018
7277e57
backend: remove deployment debug logs
wilhelmguo Nov 30, 2018
8da44cd
Merge branch 'master' of github.com:Qihoo360/wayne into feature/add_k…
wilhelmguo Nov 30, 2018
e9176a7
backend: update auditlog model Action size 255 to 256
wilhelmguo Dec 5, 2018
f33fe16
backend: update kubernetes deployment cluster & namespace param to path
wilhelmguo Dec 5, 2018
451ebe4
backend: add get kube deployment api
wilhelmguo Dec 5, 2018
d601685
backend: get kubernetes list return DeploymentList Object
wilhelmguo Dec 5, 2018
03cb40e
frontend: move tpl-detail to shared
wilhelmguo Dec 5, 2018
699621f
frontend: add kubernetes deployment management
wilhelmguo Dec 5, 2018
c847355
merge master
wilhelmguo Dec 5, 2018
a6db772
backend: update kubernetes deployment createOrUpdate strategy
wilhelmguo Dec 5, 2018
de1bfa4
frontend: update deployment tpl generate rules
wilhelmguo Dec 5, 2018
42e4b03
frontend: move tpl-detail to shared
wilhelmguo Dec 5, 2018
4fe613b
backend: deal with Resources already exist error.
wilhelmguo Dec 6, 2018
319f604
frontend: add kubernetes deployment migration
wilhelmguo Dec 6, 2018
b84aed2
frontend: update lib version
wilhelmguo Dec 6, 2018
95b5bb9
frontend: migration deployment showcolumns key to lower case
wilhelmguo Dec 6, 2018
453de6b
Merge branch 'master' of github.com:Qihoo360/wayne into feature/add_k…
wilhelmguo Dec 6, 2018
de6e641
Merge branch 'master' into feature/add_kubernetes_deployment_migration
Dec 6, 2018
42dedf4
backend: remove unused newline
wilhelmguo Dec 6, 2018
07c8c93
Merge branch 'feature/add_kubernetes_deployment_migration' of https:/…
wilhelmguo Dec 6, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
merge master
  • Loading branch information
wilhelmguo committed Dec 5, 2018
commit c847355a53abfa7a9bf2497564fe70a86b6b4940
8 changes: 8 additions & 0 deletions src/frontend/src/app/admin/admin-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ import { KubernetesDashboardComponent } from './kubernetes-dashboard/kubernetes-
import { NotificationComponent } from './notification/notification.component';
import { NodesComponent } from './node/nodes.component';
import { ADMINROUTES } from '../../../lib/admin/library-routing-admin';
import { IngressComponent } from './ingress/ingress.component';
import { TrashIngressComponent } from './ingress/trash-ingress/trash-ingress.component';
import { IngressTplComponent } from './ingresstpl/ingresstpl.component';
import { TrashIngressTplComponent } from './ingresstpl/trash-ingresstpl/trash-ingresstpl.component';
import { KubeDeploymentComponent } from './kubernetes/deployment/kube-deployment.component';


Expand Down Expand Up @@ -140,6 +144,10 @@ const routes: Routes = [
{path: 'kubernetes/persistentvolume/:cluster', component: PersistentVolumeComponent},
{path: 'kubernetes/persistentvolume/:cluster/edit/:name', component: CreateEditPersistentVolumeComponent},
{path: 'kubernetes/persistentvolume/:cluster/edit', component: CreateEditPersistentVolumeComponent},
{path: 'ingress', component: IngressComponent},
{path: 'ingress/trash', component: TrashIngressComponent},
{path: 'ingress/tpl', component: IngressTplComponent},
{path: 'ingress/tpl/trash', component: TrashIngressTplComponent},
{path: 'kubernetes/deployment', component: KubeDeploymentComponent},
{path: 'kubernetes/deployment/:cluster', component: KubeDeploymentComponent},
...ADMINROUTES
Expand Down
4 changes: 4 additions & 0 deletions src/frontend/src/app/admin/admin.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ import { NavModule } from './nav/nav.module';
import { NotificationModule } from './notification/notification.module';
import { NodesModule } from './node/nodes.module';
import { LibraryAdminModule } from '../../../lib/admin/library-admin.module';
import { IngressModule } from './ingress/ingress.module';
import { IngressTplModule } from './ingresstpl/ingresstpl.module';
import { KubeDeploymentModule } from './kubernetes/deployment/kube-deployment.module';
import { TplDetailModule } from '../shared/tpl-detail/tpl-detail.module';

Expand Down Expand Up @@ -71,6 +73,8 @@ import { TplDetailModule } from '../shared/tpl-detail/tpl-detail.module';
NotificationModule,
NodesModule,
LibraryAdminModule,
IngressModule,
IngressTplModule,
KubeDeploymentModule,
TplDetailModule
],
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.