-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Improve doc for Hobbyfarm chart Dump version to 0.1.4 * Improve doc of GitLab runner chart Dump version to 0.1.2 * Retrieve existing doc on Concourse chart * Add nfs-ganesha chart
- Loading branch information
Showing
16 changed files
with
241 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
apiVersion: extensions/v1beta1 | ||
kind: Ingress | ||
metadata: | ||
name: concourse-ingress | ||
annotations: | ||
kubernetes.io/ingress.class: nginx | ||
cert-manager.io/issuer: letsencrypt-poc | ||
spec: | ||
tls: | ||
- hosts: | ||
- my-domain.com | ||
secretName: domain-web-tls | ||
rules: | ||
- host: my-domain.com | ||
http: | ||
paths: | ||
- path: / | ||
backend: | ||
serviceName: concourse-stable-web | ||
servicePort: 8080 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Patterns to ignore when building packages. | ||
# This supports shell glob matching, relative path matching, and | ||
# negation (prefixed with !). Only one pattern per line. | ||
.DS_Store | ||
# Common VCS dirs | ||
.git/ | ||
.gitignore | ||
.bzr/ | ||
.bzrignore | ||
.hg/ | ||
.hgignore | ||
.svn/ | ||
# Common backup files | ||
*.swp | ||
*.bak | ||
*.tmp | ||
*.orig | ||
*~ | ||
# Various IDEs | ||
.project | ||
.idea/ | ||
*.tmproj | ||
.vscode/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Contribute | ||
|
||
## How to check the manifest before deployment | ||
|
||
```bash | ||
# checks the Kubernetes objects generated from the chart | ||
helm template nfs-ganesha . -f values.yaml \ | ||
--namespace nfs-ganesha > temp.yaml | ||
``` | ||
|
||
## How to check the chart | ||
|
||
```bash | ||
# applies the manifest on a cluster | ||
helm upgrade --install nfs-ganesha . -f values.yaml --create-namespace \ | ||
--namespace nfs-ganesha | ||
# --debug > output.yaml | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
apiVersion: v2 | ||
name: nfs-ganesha | ||
description: Helm chart for managing NFS-Ganesha | ||
type: application | ||
version: "0.1.0" | ||
appVersion: "1.0.0" | ||
dependencies: [] | ||
maintainers: | ||
- name: devpro | ||
email: bertrand@devpro.fr | ||
home: https://github.com/devpro/helm-charts/tree/main/charts/nfs-ganesha |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Helm chart for NFS-Ganesha | ||
|
||
This Helm chart will install [NFS-Ganesha](https://nfs-ganesha.github.io/) ([code](https://github.com/nfs-ganesha/nfs-ganesha)) on a Kubernetes cluster. | ||
|
||
## Installation | ||
|
||
```bash | ||
# installs the chart with default parameters | ||
helm upgrade --install nfs-ganesha devpro/nfs-ganesha --create-namespace --namespace nfs-ganesha | ||
``` | ||
|
||
## Open collaboration | ||
|
||
Look at the [contributing guide](CONTRIBUTING.md). |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
labels: | ||
app: {{ .Values.name }} | ||
name: {{ .Values.name }} | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app: {{ .Values.name }} | ||
template: | ||
metadata: | ||
labels: | ||
app: nfs-ganesha | ||
spec: | ||
containers: | ||
- name: container-0 | ||
image: {{ .Values.image }}:{{ .Values.tag }} | ||
imagePullPolicy: Always | ||
ports: | ||
- containerPort: 2049 | ||
name: nfsv4 | ||
protocol: TCP | ||
securityContext: | ||
capabilities: | ||
add: | ||
- NET_ADMIN | ||
- DAC_READ_SEARCH | ||
privileged: true | ||
volumeMounts: | ||
- mountPath: /data/nfs | ||
name: share | ||
dnsPolicy: ClusterFirst | ||
restartPolicy: Always | ||
volumes: | ||
- emptyDir: {} | ||
name: share |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: {{ .Values.name }}-nodeport | ||
spec: | ||
selector: | ||
app: {{ .Values.name }} | ||
type: NodePort | ||
ports: | ||
- name: nfsv4 | ||
nodePort: 32049 | ||
port: 2049 | ||
protocol: TCP | ||
targetPort: 2049 | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: {{ .Values.name }} | ||
spec: | ||
selector: | ||
app: {{ .Values.name }} | ||
type: ClusterIP | ||
ports: | ||
- name: nfsv4 | ||
port: 2049 | ||
protocol: TCP | ||
targetPort: 2049 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
name: nfs-ganesha | ||
image: janeczku/nfs-ganesha | ||
tag: latest |