Skip to content

Commit 4fb0889

Browse files
authored
bug: Fix bug with wrong type in json schema (#156)
1 parent c329dad commit 4fb0889

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

charts/k8s-image-swapper/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: k8s-image-swapper
33
description: Mirror images into your own registry and swap image references automatically.
44
type: application
5-
version: 1.10.0
5+
version: 1.10.1
66
appVersion: 1.5.10
77
home: https://github.com/estahn/charts/tree/main/charts/k8s-image-swapper
88
keywords:
@@ -15,7 +15,7 @@ maintainers:
1515
name: estahn
1616
annotations:
1717
artifacthub.io/changes: |
18-
- "Allow using an existing issuer for cert-manager certificate"
18+
- "Fix bug in values schema"
1919
artifacthub.io/images: |
2020
- name: k8s-image-webhook
2121
image: ghcr.io/estahn/k8s-image-swapper:1.5.10

charts/k8s-image-swapper/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# k8s-image-swapper
22

3-
![Version: 1.10.0](https://img.shields.io/badge/Version-1.10.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.5.10](https://img.shields.io/badge/AppVersion-1.5.10-informational?style=flat-square)
3+
![Version: 1.10.1](https://img.shields.io/badge/Version-1.10.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.5.10](https://img.shields.io/badge/AppVersion-1.5.10-informational?style=flat-square)
44

55
Mirror images into your own registry and swap image references automatically.
66

@@ -27,7 +27,7 @@ Mirror images into your own registry and swap image references automatically.
2727
| awsSecretName | string | `""` | If set, the secret will be used as environment variables, see awsSecretKeys. |
2828
| cacheVolume | object | `{"emptyDir":{}}` | The type of volume to be used for caching images |
2929
| certmanager.enabled | bool | `false` | Should cert-manager be used to issue the certificate use by the k8s-image-swapper endpoints |
30-
| certmanager.issuerName | string | `nil` | If set, the name of the cert-manager issuer to use to issue the cert, otherwise a self-signed issuer will be created |
30+
| certmanager.issuerName | string | `""` | If set, the name of the cert-manager issuer to use to issue the cert, otherwise a self-signed issuer will be created |
3131
| clusterSuffix | string | `"cluster.local"` | The DNS suffix of cluster addresses |
3232
| commonLabels | object | `{}` | Labels that will be added on all the resources (not in selectors) |
3333
| config.dryRun | bool | `true` | |

charts/k8s-image-swapper/values.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"type": "boolean"
5151
},
5252
"issuerName": {
53-
"type": "null"
53+
"type": "string"
5454
}
5555
}
5656
},

charts/k8s-image-swapper/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ certmanager:
110110
# -- Should cert-manager be used to issue the certificate use by the k8s-image-swapper endpoints
111111
enabled: false
112112
# -- If set, the name of the cert-manager issuer to use to issue the cert, otherwise a self-signed issuer will be created
113-
issuerName:
113+
issuerName: ""
114114

115115
webhook:
116116
failurePolicy: Ignore

0 commit comments

Comments
 (0)