-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from reynardmh/master
Add option to pass a file containing the secrets during encoding action
- Loading branch information
Showing
4 changed files
with
197 additions
and
5 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,118 @@ | ||
## Official nextcloud image version | ||
## ref: https://hub.docker.com/r/library/nextcloud/tags/ | ||
## | ||
image: | ||
repository: nextcloud | ||
tag: 15.0.2-apache | ||
pullPolicy: IfNotPresent | ||
# pullSecrets: | ||
# - myRegistrKeySecretName | ||
|
||
nameOverride: "" | ||
fullnameOverride: "" | ||
|
||
# Number of replicas to be deployed | ||
replicaCount: 1 | ||
|
||
## Allowing use of ingress controllers | ||
## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/ | ||
## | ||
ingress: | ||
enabled: true | ||
annotations: {} | ||
|
||
nextcloud: | ||
host: nextcloud.corp.justin-tech.com | ||
username: admin | ||
password: nextpass | ||
|
||
|
||
internalDatabase: | ||
enabled: true | ||
name: nextcloud | ||
|
||
|
||
## | ||
## External database configuration | ||
## | ||
externalDatabase: | ||
enabled: false | ||
|
||
## Database host | ||
host: | ||
|
||
## Database user | ||
user: nextcloud | ||
|
||
## Database password | ||
password: | ||
|
||
## Database name | ||
database: nextcloud | ||
|
||
## | ||
## MariaDB chart configuration | ||
## | ||
mariadb: | ||
## Whether to deploy a mariadb server to satisfy the applications database requirements. To use an external database set this to false and configure the externalDatabase parameters | ||
enabled: true | ||
|
||
db: | ||
name: nextcloud | ||
user: nextcloud | ||
password: mariapass | ||
|
||
## Enable persistence using Persistent Volume Claims | ||
## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/ | ||
## | ||
persistence: | ||
enabled: true | ||
storageClass: "nfs-client" | ||
accessMode: ReadWriteOnce | ||
size: 8Gi | ||
|
||
service: | ||
type: ClusterIP | ||
port: 8080 | ||
loadBalancerIP: nil | ||
|
||
|
||
## Enable persistence using Persistent Volume Claims | ||
## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/ | ||
## | ||
persistence: | ||
enabled: true | ||
## nextcloud data Persistent Volume Storage Class | ||
## If defined, storageClassName: <storageClass> | ||
## If set to "-", storageClassName: "", which disables dynamic provisioning | ||
## If undefined (the default) or set to null, no storageClassName spec is | ||
## set, choosing the default provisioner. (gp2 on AWS, standard on | ||
## GKE, AWS & OpenStack) | ||
## | ||
storageClass: "nfs-client" | ||
|
||
## A manually managed Persistent Volume and Claim | ||
## Requires persistence.enabled: true | ||
## If defined, PVC must be created manually before volume will be bound | ||
# existingClaim: | ||
|
||
accessMode: ReadWriteOnce | ||
size: 8Gi | ||
|
||
resources: {} | ||
# We usually recommend not to specify default resources and to leave this as a conscious | ||
# choice for the user. This also increases chances charts run on environments with little | ||
# resources, such as Minikube. If you do want to specify resources, uncomment the following | ||
# lines, adjust them as necessary, and remove the curly braces after 'resources:'. | ||
# limits: | ||
# cpu: 100m | ||
# memory: 128Mi | ||
# requests: | ||
# cpu: 100m | ||
# memory: 128Mi | ||
|
||
nodeSelector: {} | ||
|
||
tolerations: [] | ||
|
||
affinity: {} |
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