Skip to content

Commit

Permalink
v0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
levan-m committed Oct 17, 2023
1 parent e1bcb42 commit 74d5642
Show file tree
Hide file tree
Showing 4 changed files with 121 additions and 135 deletions.
4 changes: 4 additions & 0 deletions charts/operator-eks-addon/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Changelog

## 0.1.5
* Update schema file to reference dependency chart properties. Make top level properties optional.

## 0.1.3
* Bump version for a product version upload with rebuilt dependencies.

## 0.1.2
* Rename schema file.

Expand Down
2 changes: 1 addition & 1 deletion charts/operator-eks-addon/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ dependencies:
repository: file://../datadog-operator/
version: 1.0.5
digest: sha256:7c03b8598372555d16b3bc02039ace79aecf62fd21831de9bc67240911cd0791
generated: "2023-07-24T17:25:06.721822+04:00"
generated: "2023-10-16T20:25:33.846501-04:00"
2 changes: 1 addition & 1 deletion charts/operator-eks-addon/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: operator-eks-addon
version: 0.1.4
version: 0.1.5
appVersion: 0.1.0
description: Datadog Operator Wrapper
home: https://www.datadoghq.com
Expand Down
248 changes: 115 additions & 133 deletions charts/operator-eks-addon/aws_mp_configuration.schema.json
Original file line number Diff line number Diff line change
@@ -1,141 +1,123 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"replicaCount": {
"type": "integer"
},
"site": {
"type": "null"
},
"dd_url": {
"type": "null"
},
"env": {
"type": "array",
"items": {}
},
"image": {
"type": "object",
"properties": {
"tag": {
"type": "string"
}
}
},
"nameOverride": {
"type": "string"
},
"fullnameOverride": {
"type": "string"
},
"logLevel": {
"type": "string"
},
"maximumGoroutines": {
"type": "integer"
},
"metricsPort": {
"type": "integer"
},
"secretBackend": {
"type": "object",
"properties": {
"command": {
"type": "string"
},
"arguments": {
"type": "string"
}
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"datadog-operator": {
"type": "object",
"properties": {
"replicaCount": {
"type": "integer"
},
"site": {
"type": "null"
},
"dd_url": {
"type": "null"
},
"env": {
"type": "array",
"items": {}
},
"required": [
"command",
"arguments"
]
},
"rbac": {
"type": "object",
"properties": {
"create": {
"type": "boolean"
"image": {
"type": "object",
"properties": {
"tag": {
"type": "string"
}
}
},
"required": [
"create"
]
},
"serviceAccount": {
"type": "object",
"properties": {
"create": {
"type": "boolean"
"nameOverride": {
"type": "string"
},
"fullnameOverride": {
"type": "string"
},
"logLevel": {
"type": "string"
},
"maximumGoroutines": {
"type": "integer"
},
"metricsPort": {
"type": "integer"
},
"secretBackend": {
"type": "object",
"properties": {
"command": {
"type": "string"
},
"arguments": {
"type": "string"
}
},
"required": [
"command",
"arguments"
]
},
"rbac": {
"type": "object",
"properties": {
"create": {
"type": "boolean"
}
},
"name": {
"type": "string"
"required": [
"create"
]
},
"serviceAccount": {
"type": "object",
"properties": {
"create": {
"type": "boolean"
},
"name": {
"type": "string"
},
"annotations": {
"type": "object"
}
},
"annotations": {
"type": "object"
}
"required": [
"create",
"annotations"
]
},
"resources": {
"type": "object"
},
"nodeSelector": {
"type": "object"
},
"tolerations": {
"type": "array",
"items": {}
},
"affinity": {
"type": "object"
},
"required": [
"create",
"annotations"
]
},
"resources": {
"type": "object"
},
"nodeSelector": {
"type": "object"
},
"tolerations": {
"type": "array",
"items": {}
},
"affinity": {
"type": "object"
},
"installCRDs": {
"type": "boolean"
},
"podAnnotations": {
"type": "object"
},
"podLabels": {
"type": "object"
},
"collectOperatorMetrics": {
"type": "boolean"
},
"watchNamespaces": {
"type": "array",
"items": {}
},
"containerSecurityContext": {
"type": "object"
"installCRDs": {
"type": "boolean"
},
"podAnnotations": {
"type": "object"
},
"podLabels": {
"type": "object"
},
"collectOperatorMetrics": {
"type": "boolean"
},
"watchNamespaces": {
"type": "array",
"items": {}
},
"containerSecurityContext": {
"type": "object"
}
}
},
"required": [
"replicaCount",
"env",
"image",
"imagePullSecrets",
"nameOverride",
"fullnameOverride",
"logLevel",
"metricsPort",
"secretBackend",
"rbac",
"serviceAccount",
"resources",
"nodeSelector",
"tolerations",
"affinity",
"installCRDs",
"podAnnotations",
"podLabels",
"collectOperatorMetrics",
"watchNamespaces",
"containerSecurityContext"
]
}
}
}
}

0 comments on commit 74d5642

Please sign in to comment.