-
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.
- Loading branch information
Showing
15 changed files
with
15,345 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
config/* | ||
values.schema.full.json | ||
values.example.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,6 @@ | ||
apiVersion: v2 | ||
name: metachart | ||
description: Metachart born Helm Chart | ||
type: application | ||
version: "1.25.0" | ||
appVersion: none |
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,46 @@ | ||
# meta-kubernetes | ||
|
||
`meta-kubernetes` is a [metachart](https://github.com/iponweb/metachart) | ||
born [Helm](https://helm.sh/) Chart for | ||
[kubernetes](https://github.com/kubernetes/kubernetes) resources | ||
|
||
## Quickstart | ||
|
||
Add the [Helm](https://helm.sh/) repository: | ||
|
||
```shell | ||
helm repo add iponweb https://iponweb.github.io/charts/ | ||
``` | ||
|
||
Add the [values.schema.json](values.schema.json) file to your favourite IDE | ||
to enable values file autocompletion and validation. | ||
Examples: | ||
- [IntelliJ IDEA](https://www.jetbrains.com/help/idea/json.html#ws_json_schema_add_custom) | ||
- [Visual Studio Code](https://code.visualstudio.com/docs/languages/json#_json-schemas-and-settings) | ||
- [Sublime Text](https://github.com/sublimelsp/LSP-json) | ||
|
||
Define `values.yaml` with required resources and install the release: | ||
|
||
```shell | ||
helm install release-name -f values.yaml iponweb/meta-kubernetes | ||
``` | ||
|
||
See also [values.example.yaml](values.example.yaml) | ||
|
||
## Documentation | ||
|
||
For complete resources list support see [resources](docs/resources.md). | ||
|
||
See the `metachart` [Documentation](https://github.com/iponweb/metachart/docs) | ||
for more details. | ||
|
||
## Requirements | ||
|
||
Minimal supported [Helm](https://helm.sh/) version is `v3.2.0`. | ||
|
||
## Versioning | ||
|
||
Chart major and minor version parts follow | ||
[kubernetes](https://github.com/kubernetes/kubernetes) | ||
versions which has been used for the chart generation. Patch component is used | ||
for charts own changes/fixes. |
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,148 @@ | ||
resources: | ||
images: | ||
template: false | ||
jsonSchemaRef: metachart.api.internal.Image | ||
defaults: false | ||
|
||
#: rbac.authorization.k8s.io/v1 | ||
roles: | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: Role | ||
jsonSchemaRef: metachart.api.io.k8s.api.rbac.v1.Role | ||
rolebindings: | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: RoleBinding | ||
jsonSchemaRef: metachart.api.io.k8s.api.rbac.v1.RoleBinding | ||
clusterroles: | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
jsonSchemaRef: metachart.api.io.k8s.api.rbac.v1.ClusterRole | ||
clusterrolebindings: | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
jsonSchemaRef: metachart.api.io.k8s.api.rbac.v1.ClusterRoleBinding | ||
|
||
#: apiregistration.k8s.io/v1 | ||
apiservices: | ||
apiVersion: apiregistration.k8s.io/v1 | ||
kind: APIService | ||
jsonSchemaRef: metachart.api.io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService | ||
|
||
#: admissionregistration.k8s.io/v1 | ||
mutatingwebhookconfigurations: | ||
apiVersion: admissionregistration.k8s.io/v1 | ||
kind: MutatingWebhookConfiguration | ||
jsonSchemaRef: metachart.api.io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration | ||
validatingwebhookconfigurations: | ||
apiVersion: admissionregistration.k8s.io/v1 | ||
kind: ValidatingWebhookConfiguration | ||
jsonSchemaRef: metachart.api.io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration | ||
|
||
#: apiextensions.k8s.io/v1 | ||
customresourcedefinitions: | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
jsonSchemaRef: metachart.api.io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition | ||
|
||
#: networking.k8s.io/v1 | ||
ingresses: | ||
apiVersion: networking.k8s.io/v1 | ||
kind: Ingress | ||
jsonSchemaRef: metachart.api.io.k8s.api.networking.v1.Ingress | ||
ingressclasses: | ||
apiVersion: networking.k8s.io/v1 | ||
kind: Ingress | ||
jsonSchemaRef: metachart.api.io.k8s.api.networking.v1.IngressClass | ||
networkpolicies: | ||
apiVersion: networking.k8s.io/v1 | ||
kind: Ingress | ||
jsonSchemaRef: metachart.api.io.k8s.api.networking.v1.NetworkPolicy | ||
|
||
#: storage.k8s.io/v1 | ||
storageclasses: | ||
apiVersion: storage.k8s.io/v1 | ||
kind: StorageClass | ||
jsonSchemaRef: metachart.api.io.k8s.api.storage.v1.StorageClass | ||
|
||
#: v1 | ||
serviceaccounts: | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
jsonSchemaRef: metachart.api.io.k8s.api.core.v1.ServiceAccount | ||
persistentvolumes: | ||
apiVersion: v1 | ||
kind: PersistentVolume | ||
jsonSchemaRef: metachart.api.io.k8s.api.core.v1.PersistentVolume | ||
persistentvolumeclaims: | ||
apiVersion: v1 | ||
kind: PersistentVolumeClaim | ||
jsonSchemaRef: metachart.api.io.k8s.api.core.v1.PersistentVolumeClaim | ||
configmaps: | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
jsonSchemaRef: metachart.api.io.k8s.api.core.v1.ConfigMap | ||
secrets: | ||
apiVersion: v1 | ||
kind: Secret | ||
jsonSchemaRef: metachart.api.io.k8s.api.core.v1.Secret | ||
services: | ||
apiVersion: v1 | ||
kind: Service | ||
jsonSchemaRef: metachart.api.io.k8s.api.core.v1.Service | ||
containers: | ||
jsonSchemaRef: metachart.api.core.v1.Container | ||
template: false | ||
root: false | ||
defaults: true | ||
pods: | ||
apiVersion: v1 | ||
kind: Pod | ||
jsonSchemaRef: metachart.api.core.v1.Pod | ||
|
||
#: apps/v1 | ||
deployments: | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
jsonSchemaRef: metachart.api.io.k8s.api.apps.v1.Deployment | ||
daemonsets: | ||
apiVersion: apps/v1 | ||
kind: DaemonSet | ||
jsonSchemaRef: metachart.api.io.k8s.api.apps.v1.DaemonSet | ||
statefulsets: | ||
apiVersion: apps/v1 | ||
kind: StatefulSet | ||
jsonSchemaRef: metachart.api.io.k8s.api.apps.v1.StatefulSet | ||
|
||
#: autoscaling/v1 | ||
horizontalpodautoscalers: | ||
apiVersion: autoscaling/v1 | ||
kind: HorizontalPodAutoscaler | ||
jsonSchemaRef: metachart.api.io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler | ||
|
||
#: batch/v1 | ||
jobs: | ||
apiVersion: batch/v1 | ||
kind: Job | ||
jsonSchemaRef: metachart.api.io.k8s.api.batch.v1.Job | ||
cronjobs: | ||
apiVersion: batch/v1 | ||
kind: CronJob | ||
jsonSchemaRef: metachart.api.io.k8s.api.batch.v1.CronJob | ||
|
||
#: certificates.k8s.io/v1 | ||
certificatesigningrequests: | ||
apiVersion: certificates.k8s.io/v1 | ||
kind: CertificateSigningRequest | ||
jsonSchemaRef: metachart.api.io.k8s.api.certificates.v1.CertificateSigningRequest | ||
|
||
#: policy/v1 | ||
poddisruptionbudgets: | ||
apiVersion: policy/v1 | ||
kind: PodDisruptionBudget | ||
jsonSchemaRef: metachart.api.io.k8s.api.policy.v1.PodDisruptionBudget | ||
|
||
#: scheduling.k8s.io/v1 | ||
priorityclasses: | ||
apiVersion: scheduling.k8s.io/v1 | ||
kind: PriorityClass | ||
jsonSchemaRef: metachart.api.io.k8s.api.scheduling.v1.PriorityClass |
Oops, something went wrong.