Skip to content

Commit c164d87

Browse files
Ticket #4 : Publish helm chart
1 parent fed7c66 commit c164d87

File tree

7 files changed

+48
-3
lines changed

7 files changed

+48
-3
lines changed

FaasNetDoc.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Avant de commencer, lancer le container "registry" :
22
docker run -d -p 5000:5000 --restart=always --name registry registry:2
33

4+
Créer le namespace : kubectl create namespace faas
5+
Installer avec helm : helm install faasnet ./helm --namespace faas
6+
Construire le package helm : helm package ./helm -d ./charts
7+
Construire index.yaml : helm repo index ./charts
8+
49
# Comment déployer SQLSERVER
510

611
kubectl apply -f ./kubernetes/run-mssql.yml --namespace=faas

helm/.helmignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Patterns to ignore when building packages.
2+
# This supports shell glob matching, relative path matching, and
3+
# negation (prefixed with !). Only one pattern per line.
4+
.DS_Store
5+
# Common VCS dirs
6+
.git/
7+
.gitignore
8+
.bzr/
9+
.bzrignore
10+
.hg/
11+
.hgignore
12+
.svn/
13+
# Common backup files
14+
*.swp
15+
*.bak
16+
*.tmp
17+
*.orig
18+
*~
19+
# Various IDEs
20+
.project
21+
.idea/
22+
*.tmproj
23+
.vscode/

helm/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
22
description: A helm chart to install faasnet
3-
name: profile
3+
name: faasnet
44
home: https://github.com/simpleidserver/FaasNet
55
version: 0.0.1
66
maintainers:

helm/charts/faasnet-0.0.1.tgz

998 Bytes
Binary file not shown.

helm/index.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
apiVersion: v1
2+
entries:
3+
faasnet:
4+
- apiVersion: v1
5+
appVersion: 0.0.1
6+
created: "2021-09-21T21:06:32.3645154+02:00"
7+
description: A helm chart to install faasnet
8+
digest: 8b4b914d25d8b432e32e8d9261210e69c1796d52fe5d4a6b43b7a3ec9646d6d6
9+
home: https://github.com/simpleidserver/FaasNet
10+
maintainers:
11+
12+
name: SimpleIdServer
13+
name: faasnet
14+
urls:
15+
- charts/faasnet-0.0.1.tgz
16+
version: 0.0.1
17+
generated: "2021-09-21T21:06:32.3645154+02:00"

helm/templates/run-faas-gateway.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ spec:
1414
spec:
1515
containers:
1616
- name: faas-gateway
17-
image: simpleidserver/faasgateway
17+
image: simpleidserver/faasgateway:0.0.1
1818
ports:
1919
- containerPort: 8080

helm/templates/run-faas-kubernetes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ spec:
1414
spec:
1515
containers:
1616
- name: faas-kubernetes
17-
image: simpleidserver/faaskubernetes
17+
image: simpleidserver/faaskubernetes:0.0.1
1818
ports:
1919
- containerPort: 8080

0 commit comments

Comments
 (0)