-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(plantuml): Updated image to v1.2023.13
Signed-off-by: Steve Hipwell <[email protected]>
- Loading branch information
1 parent
b4e33b8
commit aa697e8
Showing
11 changed files
with
326 additions
and
117 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 |
---|---|---|
|
@@ -4,7 +4,6 @@ k8s-resources | |
nexus3 | ||
node-config | ||
overprovisioner | ||
plantuml | ||
sonarqube | ||
thanos | ||
tigera-operator | ||
|
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
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
apiVersion: v2 | ||
name: plantuml | ||
description: Helm chart for PlantUML. | ||
description: Helm chart for PlantUML Server, a web application to generate UML diagrams on-the-fly. | ||
type: application | ||
version: 3.26.0 | ||
appVersion: 1.2023.12 | ||
version: 3.27.0 | ||
appVersion: 1.2023.13 | ||
home: https://plantuml.com/ | ||
icon: https://kieranborsden.gallerycdn.vsassets.io/extensions/kieranborsden/plantumllanguageservice/1.1.5.1/1556620084743/Microsoft.VisualStudio.Services.Icons.Default | ||
keywords: | ||
|
@@ -19,5 +19,25 @@ maintainers: | |
email: [email protected] | ||
annotations: | ||
artifacthub.io/changes: | | ||
- kind: added | ||
description: "Added `serviceAccount.labels` value." | ||
- kind: added | ||
description: "Added support for configuring `HorizontalPodAutoscaler` behaviour with the `autoscaling.behavior` value." | ||
- kind: added | ||
description: "Added `autoscaling.metrics` value to replace the deprecated `autoscaling.targetCPUUtilizationPercentage` & `autoscaling.targetMemoryUtilizationPercentage` values." | ||
- kind: added | ||
description: "Added `podDisruptionBudget` value to replace the deprecated `maxUnavailable` variable." | ||
- kind: changed | ||
description: "Updated the PlantUML OCI image to v1.2023.12." | ||
description: "Updated the PlantUML OCI image to v1.2023.13." | ||
- kind: changed | ||
description: "Changed the pod security policy defaults." | ||
- kind: changed | ||
description: "Changed the PlantUML container security policy defaults." | ||
- kind: changed | ||
description: "Changed the CA certificates init container security policy." | ||
- kind: deprecated | ||
description: "Deprecated `autoscaling.targetCPUUtilizationPercentage` value." | ||
- kind: deprecated | ||
description: "Deprecated `autoscaling.targetMemoryUtilizationPercentage` value." | ||
- kind: deprecated | ||
description: "Deprecated `podDisruptionBudget` value." |
Large diffs are not rendered by default.
Oops, something went wrong.
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,35 @@ | ||
{{ template "chart.header" . }} | ||
{{ template "chart.deprecationWarning" . }} | ||
|
||
{{ template "chart.badgesSection" . }} | ||
|
||
{{ template "chart.description" . }} | ||
|
||
{{ template "chart.homepageLine" . }} | ||
|
||
{{ template "chart.maintainersSection" . }} | ||
|
||
{{ template "chart.sourcesSection" . }} | ||
|
||
## Installing the Chart | ||
|
||
To install the chart using the recommended OCI method you can use the following command. | ||
|
||
```shell | ||
helm upgrade --install {{ template "chart.name" . }} oci://ghcr.io/stevehipwell/helm-charts/{{ template "chart.name" . }} --version {{ template "chart.version" . }} | ||
``` | ||
|
||
Alternatively you can use the legacy non-OCI method via the following commands. | ||
|
||
```shell | ||
helm repo add stevehipwell https://stevehipwell.github.io/helm-charts/ | ||
helm upgrade --install {{ template "chart.name" . }} stevehipwell/{{ template "chart.name" . }} --version {{ template "chart.version" . }} | ||
``` | ||
|
||
{{ template "chart.requirementsSection" . }} | ||
|
||
{{ template "chart.valuesSection" . }} | ||
|
||
---------------------------------------------- | ||
|
||
Autogenerated from chart metadata using [helm-docs](https://github.com/norwoodj/helm-docs/). |
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 |
---|---|---|
@@ -1,7 +1,22 @@ | ||
maxUnavailable: 1 | ||
|
||
autoscaling: | ||
enabled: true | ||
metrics: | ||
- type: Resource | ||
resource: | ||
name: cpu | ||
target: | ||
type: Utilization | ||
averageUtilization: 80 | ||
- type: Resource | ||
resource: | ||
name: memory | ||
target: | ||
type: Utilization | ||
averageUtilization: 80 | ||
|
||
podDisruptionBudget: | ||
enabled: true | ||
maxUnavailable: 1 | ||
|
||
caCerts: | ||
enabled: true |
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
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
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
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
Oops, something went wrong.