Skip to content

Commit

Permalink
build: Add missing chart schema YAML
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmidyson committed Oct 4, 2023
1 parent ab35cf2 commit f57b7bd
Show file tree
Hide file tree
Showing 4 changed files with 101 additions and 0 deletions.
40 changes: 40 additions & 0 deletions charts/chart_schema.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Copyright 2023 D2iQ, Inc. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

name: str()
home: str(required=False)
version: str()
apiVersion: str()
appVersion: any(str(), num(), required=False)
description: str(required=False)
keywords: list(str(), required=False)
sources: list(str(), required=False)
maintainers: list(include('maintainer'), required=False)
dependencies: list(include('dependency'), required=False)
icon: str(required=False)
engine: str(required=False)
condition: str(required=False)
tags: str(required=False)
deprecated: bool(required=False)
kubeVersion: str(required=False)
annotations: map(str(), str(), required=False)
type: str(required=False)
---
maintainer:
name: str()
email: str(required=False)
url: str(required=False)
---
dependency:
name: str()
version: str()
repository: str(required=False)
condition: str(required=False)
tags: list(str(), required=False)
enabled: bool(required=False)
import-values: any(list(str()), list(include('import-value')), required=False)
alias: str(required=False)
---
import-value:
child: str()
parent: str()
6 changes: 6 additions & 0 deletions charts/dynamic-credential-provider/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,9 @@ description: A Helm chart for Kubernetes dynamic credential provider
type: application
version: "0.0.0-dev"
appVersion: "v0.0.0-dev"
maintainers:
- name: jimmidyson
email: [email protected]
url: https://github.com/jimmidyson
sources:
- https://github.com/mesosphere/dynamic-credential-provider
10 changes: 10 additions & 0 deletions charts/dynamic-credential-provider/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@

A Helm chart for Kubernetes dynamic credential provider

## Maintainers

| Name | Email | Url |
| ---- | ------ | --- |
| jimmidyson | <[email protected]> | <https://github.com/jimmidyson> |

## Source Code

* <https://github.com/mesosphere/dynamic-credential-provider>

## Values

| Key | Type | Default | Description |
Expand Down
45 changes: 45 additions & 0 deletions charts/lintconf.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Copyright 2023 D2iQ, Inc. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

---
rules:
braces:
min-spaces-inside: 0
max-spaces-inside: 0
min-spaces-inside-empty: -1
max-spaces-inside-empty: -1
brackets:
min-spaces-inside: 0
max-spaces-inside: 0
min-spaces-inside-empty: -1
max-spaces-inside-empty: -1
colons:
max-spaces-before: 0
max-spaces-after: 1
commas:
max-spaces-before: 0
min-spaces-after: 1
max-spaces-after: 1
comments:
require-starting-space: true
min-spaces-from-content: 2
document-end: disable
document-start: disable # No --- to start a file
empty-lines:
max: 2
max-start: 0
max-end: 0
hyphens:
max-spaces-after: 1
indentation:
spaces: consistent
indent-sequences: whatever # - list indentation will handle both indentation and without
check-multi-line-strings: false
key-duplicates: enable
line-length: disable # Lines can be any length
new-line-at-end-of-file: enable
new-lines:
type: unix
trailing-spaces: enable
truthy:
level: warning

0 comments on commit f57b7bd

Please sign in to comment.