diff options
| author | Max Resnick <max@ofmax.li> | 2021-10-09 23:07:53 -0700 |
|---|---|---|
| committer | Max Resnick <max@ofmax.li> | 2021-10-09 23:28:41 -0700 |
| commit | bda8a1c25070678e6efd22003e398691404c832f (patch) | |
| tree | 6ad3711b08bf3f8f3ad3577e97243402bad64b79 /grumpy/gitolite/values.yaml | |
| parent | b2630dfd176884f9b33be88f2033b84a1c4dd7cd (diff) | |
| download | grumpy-charts-bda8a1c25070678e6efd22003e398691404c832f.tar.gz | |
feat: switch to kustomize from helm
Diffstat (limited to '')
| -rw-r--r-- | grumpy/gitolite/values.yaml | 96 |
1 files changed, 0 insertions, 96 deletions
diff --git a/grumpy/gitolite/values.yaml b/grumpy/gitolite/values.yaml deleted file mode 100644 index 2bc1e07..0000000 --- a/grumpy/gitolite/values.yaml +++ /dev/null @@ -1,96 +0,0 @@ -# Default values for gitolite. -# This is a YAML-formatted file. -# Declare name/value pairs to be passed into your templates. -# name: value - -Name: gitolite -Image: "registry.gitlab.com/grumps/grumpy-containers/gitolite" -ImageTag: "v0.0.4" -ImagePullPolicy: "Always" -Component: "gitolite" -imagePullSecrets: - - name: regcred -Cpu: "200m" -Memory: "256Mi" -ServicePort: 30000 -# For minikube, set this to NodePort, elsewhere use LoadBalancer -# Use ClusterIP if your setup includes ingress controller -ServiceType: NodePort -ServiceAnnotations: {} - # service.beta.kubernetes.io/aws-load-balancer-backend-protocol: https -# Used to create Ingress record (should used with ServiceType: ClusterIP) -# HostName: gitolite.cluster.local -# NodePort: <to set explicitly, choose port between 30000-32767 -ContainerPort: 22 -LoadBalancerSourceRanges: -- 0.0.0.0/0 -# Optionally assign a known public LB IP -# LoadBalancerIP: 1.2.3.4 -# Node labels and tolerations for pod assignment -# ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector -# ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#taints-and-tolerations-beta-feature -NodeSelector: {} -Tolerations: {} - -Ingress: - Annotations: - # kubernetes.io/ingress.class: nginx - # kubernetes.io/tls-acme: "true" - - TLS: - # - secretName: gitolite.cluster.local - # hosts: - # - gitolite.cluster.local - -Persistence: - SshKeys: - Enabled: true - ## A manually managed Persistent Volume and Claim - ## Requires Persistence.Enabled: true - ## If defined, PVC must be created manually before volume will be bound - # ExistingClaim: - - ## 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: "-" - - AccessMode: ReadWriteOnce - Size: 1Gi - Git: - Enabled: true - ## A manually managed Persistent Volume and Claim - ## Requires Persistence.Enabled: true - ## If defined, PVC must be created manually before volume will be bound - # ExistingClaim: - - ## 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: "-" - - AccessMode: ReadWriteOnce - Size: 8Gi - volumes: -# - name: nothing -# emptyDir: {} - mounts: -# - mountPath: /var/nothing -# name: nothing -# readOnly: true - -NetworkPolicy: - # Enable creation of NetworkPolicy resources. - Enabled: false - # For Kubernetes v1.4, v1.5 and v1.6, use 'extensions/v1beta1' - # For Kubernetes v1.7, use 'networking.k8s.io/v1' - ApiVersion: 'networking.k8s.io/v1' - |