Skip to content

Commit 3fbb7d5

Browse files
committed
Removing AppShare name
1 parent 2348d69 commit 3fbb7d5

File tree

4 files changed

+40
-40
lines changed

4 files changed

+40
-40
lines changed

deploy_kubernetes_appshare.yml deploy_kubernetes_vjs.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
apiVersion: apps/v1
22
kind: Deployment
33
metadata:
4-
name: appshare-deployment
4+
name: vjs-deployment
55
labels:
6-
app: appshare
6+
app: vjs
77
spec:
88
replicas: 1
99
selector:
1010
matchLabels:
11-
app: appshare
11+
app: vjs
1212
template:
1313
metadata:
1414
labels:
15-
app: appshare
15+
app: vjs
1616
spec:
1717
containers:
18-
- name: appshare
18+
- name: vjs
1919
image: yazzcom/visualjavascript:2021
2020
ports:
2121
- containerPort: 3000
@@ -24,16 +24,16 @@ apiVersion: v1
2424
kind: Service
2525
metadata:
2626
labels:
27-
app: appshare
28-
name: appshare-deployment
27+
app: vjs
28+
name: vjs-deployment
2929
spec:
3030
externalTrafficPolicy: Cluster
3131
ports:
3232
- nodePort: 30000
3333
port: 3000
3434
protocol: TCP
3535
selector:
36-
app: appshare
36+
app: vjs
3737
sessionAffinity: None
3838
type: LoadBalancer
3939
status:

deploy_openshift_template_appshare.yml deploy_openshift_template_vjs.yml

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
apiVersion: template.openshift.io/v1
22
kind: Template
3-
message: Installing Kubernetes AppShare
3+
message: Installing Kubernetes vjs
44
metadata:
55
annotations:
6-
description: AppShare Installer 5
7-
openshift.io/display-name: AppShare Installer 5
8-
openshift.io/provider-display-name: AppShare
6+
description: vjs Installer 5
7+
openshift.io/display-name: vjs Installer 5
8+
openshift.io/provider-display-name: vjs
99
tags: integration, api management, javascript
1010
creationTimestamp: null
11-
name: appshare-installer-5
11+
name: vjs-installer-5
1212

1313

1414

@@ -17,15 +17,15 @@ objects:
1717
- apiVersion: "v1"
1818
kind: "DeploymentConfig"
1919
metadata:
20-
name: "appshare"
20+
name: "vjs"
2121
spec:
2222
template:
2323
metadata:
2424
labels:
25-
name: "appshare"
25+
name: "vjs"
2626
spec:
2727
containers:
28-
- name: "appshare"
28+
- name: "vjs"
2929
image: "yazzcom/visualjavascript:2021"
3030
ports:
3131
- containerPort: 3000
@@ -57,31 +57,31 @@ objects:
5757
memory: 512Mi
5858
replicas: 1
5959
selector:
60-
name: "appshare"
60+
name: "vjs"
6161

6262

6363

6464
- apiVersion: v1
6565
kind: Service
6666
metadata:
67-
name: appshare
67+
name: vjs
6868
spec:
6969
ports:
7070
- port: 3000
7171
protocol: TCP
7272
targetPort: 3000
7373
selector:
74-
deploymentconfig: appshare
74+
deploymentconfig: vjs
7575

7676

7777

7878
- apiVersion: v1
7979
kind: Route
8080
metadata:
81-
name: appshare-route
81+
name: vjs-route
8282
spec:
8383
to:
8484
kind: Service
85-
name: appshare
85+
name: vjs
8686
labels:
87-
app: appshare
87+
app: vjs

deploy_appshare.yml deploy_vjs.yml

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
AppShareapiVersion: template.openshift.io/v1
1+
apiVersion: template.openshift.io/v1
22
kind: Template
3-
message: Installing Kubernetes AppShare
3+
message: Installing Kubernetes vjs
44
metadata:
55
annotations:
6-
description: AppShare Installer 4
6+
description: vjs Installer 4
77
iconClass: icon-3scale
8-
openshift.io/display-name: AppShare Installer 4
9-
openshift.io/provider-display-name: AppShare
8+
openshift.io/display-name: vjs Installer 4
9+
openshift.io/provider-display-name: vjs
1010
tags: integration, api management, javascript
1111
creationTimestamp: null
12-
name: appshare-installer-4
12+
name: vjs-installer-4
1313

1414

1515

@@ -18,15 +18,15 @@ objects:
1818
- apiVersion: "v1"
1919
kind: "DeploymentConfig"
2020
metadata:
21-
name: "appshare"
21+
name: "vjs"
2222
spec:
2323
template:
2424
metadata:
2525
labels:
26-
name: "appshare"
26+
name: "vjs"
2727
spec:
2828
containers:
29-
- name: "appshare"
29+
- name: "vjs"
3030
image: "yazzcom/visualjavascript:2021"
3131
ports:
3232
- containerPort: 3000
@@ -54,31 +54,31 @@ objects:
5454
memory: 512Mi
5555
replicas: 1
5656
selector:
57-
name: "appshare"
57+
name: "vjs"
5858

5959

6060

6161
- apiVersion: v1
6262
kind: Service
6363
metadata:
64-
name: appshare-service
64+
name: vjs-service
6565
spec:
6666
ports:
6767
- port: 3000
6868
protocol: TCP
6969
targetPort: 3000
7070
selector:
71-
deploymentconfig: appshare
71+
deploymentconfig: vjs
7272

7373

7474

7575
- apiVersion: v1
7676
kind: Route
7777
metadata:
78-
name: appshare-route
78+
name: vjs-route
7979
spec:
8080
to:
8181
kind: Service
82-
name: appshare-service
82+
name: vjs-service
8383
labels:
84-
app: appshare
84+
app: vjs

public/visifile/download.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@
121121
Docker
122122
</div>
123123
<div class="text-left" style="font-family: 'Cutive Mono', sans-serif;font-size: 24pt; color: black;font-weight:bold;">
124-
<h5 style="margin-top: 10px;"><b></b> docker rm appshare</h5>
125-
<h5 style="margin-top: 10px;"><b></b> docker run -p 3000:3000 -v ~/:/home/node/localpc --name appshare --env virtualprocessors=16 yazzcom/visualjavascript:2021</h5>
124+
<h5 style="margin-top: 10px;"><b></b> docker rm vjs</h5>
125+
<h5 style="margin-top: 10px;"><b></b> docker run -p 3000:3000 -v ~/:/home/node/localpc --name vjs --env virtualprocessors=16 yazzcom/visualjavascript:2021</h5>
126126
</div>
127127

128128

@@ -131,7 +131,7 @@ <h5 style="margin-top: 10px;"><b></b> docker run -p 3000:3000 -v ~/:/home/node/l
131131
OpenShift
132132
</div>
133133
<div class="text-left" style="font-family: 'Cutive Mono', sans-serif;font-size: 24pt; color: black;font-weight:bold;">
134-
<h5 style="margin-top: 10px;"><b></b> oc new-app https://raw.githubusercontent.com/zubairq/visualjavascript/master/deploy_openshift_template_appshare.yml</h5>
134+
<h5 style="margin-top: 10px;"><b></b> oc new-app https://raw.githubusercontent.com/zubairq/visualjavascript/master/deploy_openshift_template_vjs.yml</h5>
135135
</div>
136136

137137

0 commit comments

Comments
 (0)