-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add coredns-app-1.22.0-880632769ddcb6036d761791b0427350f18fa5ce.tgz
coredns-app-1.22.0-880632769ddcb6036d761791b0427350f18fa5ce.tgz-meta/README.md coredns-app-1.22.0-880632769ddcb6036d761791b0427350f18fa5ce.tgz-meta/main.yaml coredns-app-1.22.0-880632769ddcb6036d761791b0427350f18fa5ce.tgz-meta/values.schema.json
- Loading branch information
1 parent
f01f716
commit 1289b05
Showing
5 changed files
with
273 additions
and
1 deletion.
There are no files selected for viewing
Binary file not shown.
34 changes: 34 additions & 0 deletions
34
coredns-app-1.22.0-880632769ddcb6036d761791b0427350f18fa5ce.tgz-meta/README.md
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,34 @@ | ||
[![CircleCI](https://dl.circleci.com/status-badge/img/gh/giantswarm/coredns-app/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/giantswarm/coredns-app/tree/main) | ||
|
||
# coredns-app | ||
|
||
Helm Chart for CoreDNS in Workload Clusters. | ||
|
||
* Installs the the DNS server [CoreDNS](https://github.com/coredns/coredns). | ||
|
||
# Deployment | ||
|
||
Managed by the Giant Swarm [App Platform](https://docs.giantswarm.io/app-platform/). | ||
|
||
# Configuration Options | ||
|
||
- All configuration options are documented in the [values.yaml](/helm/coredns-app/values.yaml) file. | ||
- [Advanced CoreDNS configuration](https://docs.giantswarm.io/advanced/coredns/) docs. | ||
|
||
# For developers | ||
|
||
## Installing the Chart | ||
|
||
To install the chart locally: | ||
|
||
```bash | ||
$ git clone https://github.com/giantswarm/coredns-app.git | ||
$ cd coredns-app | ||
$ helm install helm/coredns-app | ||
``` | ||
|
||
Provide a custom `values.yaml`: | ||
|
||
```bash | ||
$ helm install coredns-app -f values.yaml | ||
``` |
11 changes: 11 additions & 0 deletions
11
coredns-app-1.22.0-880632769ddcb6036d761791b0427350f18fa5ce.tgz-meta/main.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 @@ | ||
annotations: | ||
application.giantswarm.io/metadata: https://giantswarm.github.io/giantswarm-test-catalog/coredns-app-1.22.0-880632769ddcb6036d761791b0427350f18fa5ce.tgz-meta/main.yaml | ||
application.giantswarm.io/readme: https://giantswarm.github.io/giantswarm-test-catalog/coredns-app-1.22.0-880632769ddcb6036d761791b0427350f18fa5ce.tgz-meta/README.md | ||
application.giantswarm.io/team: cabbage | ||
application.giantswarm.io/values-schema: https://giantswarm.github.io/giantswarm-test-catalog/coredns-app-1.22.0-880632769ddcb6036d761791b0427350f18fa5ce.tgz-meta/values.schema.json | ||
chartApiVersion: v2 | ||
chartFile: coredns-app-1.22.0-880632769ddcb6036d761791b0427350f18fa5ce.tgz | ||
dateCreated: '2024-11-14T11:19:21.709651Z' | ||
digest: d1ee7def90ad221f56e4e9ad0aac06c3368bae1dc94f80e903487d1d64c4dca6 | ||
home: https://github.com/giantswarm/coredns-app | ||
icon: https://s.giantswarm.io/app-icons/coredns/1/dark.svg |
211 changes: 211 additions & 0 deletions
211
coredns-app-1.22.0-880632769ddcb6036d761791b0427350f18fa5ce.tgz-meta/values.schema.json
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,211 @@ | ||
{ | ||
"$schema": "http://json-schema.org/schema#", | ||
"type": "object", | ||
"properties": { | ||
"cluster": { | ||
"type": "object", | ||
"properties": { | ||
"calico": { | ||
"type": "object", | ||
"properties": { | ||
"CIDR": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"kubernetes": { | ||
"type": "object", | ||
"properties": { | ||
"API": { | ||
"type": "object", | ||
"properties": { | ||
"clusterIPRange": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"DNS": { | ||
"type": "object", | ||
"properties": { | ||
"IP": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"clusterDomain": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"configmap": { | ||
"type": "object", | ||
"properties": { | ||
"cache": { | ||
"type": "integer" | ||
}, | ||
"custom": { | ||
"type": "string" | ||
}, | ||
"log": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"groupID": { | ||
"type": "integer" | ||
}, | ||
"hpa": { | ||
"type": "object", | ||
"properties": { | ||
"behavior": { | ||
"type": "object", | ||
"properties": { | ||
"scaleDown": { | ||
"type": "object", | ||
"properties": { | ||
"stabilizationWindowSeconds": { | ||
"type": "integer" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"maxReplicas": { | ||
"type": "integer" | ||
}, | ||
"metrics": { | ||
"type": "array" | ||
}, | ||
"minReplicas": { | ||
"type": "integer" | ||
}, | ||
"targetCPUUtilizationPercentage": { | ||
"type": "integer" | ||
}, | ||
"targetMemoryUtilizationPercentage": { | ||
"type": "integer" | ||
} | ||
} | ||
}, | ||
"image": { | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
}, | ||
"registry": { | ||
"type": "string" | ||
}, | ||
"tag": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"loadbalancePolicy": { | ||
"type": "string" | ||
}, | ||
"mastersInstance": { | ||
"type": "object", | ||
"properties": { | ||
"nodeSelector": { | ||
"type": "object", | ||
"properties": { | ||
"node-role.kubernetes.io/control-plane": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"name": { | ||
"type": "string" | ||
}, | ||
"namespace": { | ||
"type": "string" | ||
}, | ||
"podDisruptionBudget": { | ||
"type": "object", | ||
"properties": { | ||
"maxUnavailable": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"ports": { | ||
"type": "object", | ||
"properties": { | ||
"dns": { | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
}, | ||
"port": { | ||
"type": "integer" | ||
}, | ||
"targetPort": { | ||
"type": "integer" | ||
} | ||
} | ||
}, | ||
"prometheus": { | ||
"type": "integer" | ||
} | ||
} | ||
}, | ||
"resources": { | ||
"type": "object", | ||
"properties": { | ||
"limits": { | ||
"type": "object", | ||
"properties": { | ||
"memory": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"requests": { | ||
"type": "object", | ||
"properties": { | ||
"cpu": { | ||
"type": "string" | ||
}, | ||
"memory": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"serviceType": { | ||
"type": "string" | ||
}, | ||
"updateStrategy": { | ||
"type": "object", | ||
"properties": { | ||
"rollingUpdate": { | ||
"type": "object", | ||
"properties": { | ||
"maxUnavailable": { | ||
"type": [ | ||
"string", | ||
"integer" | ||
] | ||
} | ||
} | ||
}, | ||
"type": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"userID": { | ||
"type": "integer" | ||
} | ||
} | ||
} |
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