-
Notifications
You must be signed in to change notification settings - Fork 17
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
1 parent
6dbc346
commit 962cb76
Showing
9 changed files
with
69 additions
and
213 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 |
---|---|---|
@@ -1,12 +1,21 @@ | ||
name: network-tools | ||
description: Debugging Tools / Pods | ||
version: 0.1.1 | ||
version: 0.2.0 | ||
apiVersion: v2 | ||
appVersion: 1.0.0 | ||
appVersion: 1.1.0 | ||
keywords: | ||
- network | ||
- tools | ||
- development | ||
sources: | ||
- https://github.com/EugenMayer/helm-charts/tree/main/charts/network-tools | ||
home: https://github.com/EugenMayer/helm-charts/tree/main/charts/network-tools | ||
dependencies: | ||
- name: common | ||
# https://artifacthub.io/packages/helm/truecharts-library-charts/common | ||
version: 20.2.0 | ||
repository: oci://tccr.io/truecharts | ||
condition: "" | ||
alias: "" | ||
tags: [] | ||
import-values: [] |
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
charts/network-tools/templates/boostrap-wrapper-script-configmap.yaml
This file was deleted.
Oops, something went wrong.
65 changes: 0 additions & 65 deletions
65
charts/network-tools/templates/debian-morty-deployment.yaml
This file was deleted.
Oops, something went wrong.
65 changes: 0 additions & 65 deletions
65
charts/network-tools/templates/debian-rick-deployment.yaml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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 |
---|---|---|
@@ -1,18 +1,61 @@ | ||
persistence: | ||
# If enabled, create a volume for /mnt | ||
enabled: true | ||
image: | ||
repository: debian | ||
tag: bookworm | ||
pullPolicy: IfNotPresent | ||
|
||
securityContext: | ||
container: | ||
runAsNonRoot: false | ||
runAsGroup: 0 | ||
runAsUser: 0 | ||
readOnlyRootFilesystem: false | ||
|
||
service: | ||
# If enabled, exposes the iperf servers via services | ||
enabled: true | ||
main: | ||
ports: | ||
main: | ||
protocol: tcp | ||
port: 5201 | ||
targetPort: 5201 | ||
|
||
workload: | ||
main: | ||
enabled: true | ||
replicas: 1 | ||
strategy: Recreate | ||
type: Deployment | ||
podSpec: | ||
containers: | ||
main: | ||
command: | ||
- "/bin/bash" | ||
args: | ||
- "-c" | ||
- | | ||
apt update | ||
apt install -y curl wget iperf3 inetutils-ping telnet dnsutils procps | ||
echo "run iperf3 on port 5201" | ||
exec iperf3 -s -p 5201 | ||
probes: | ||
readiness: | ||
port: 5201 | ||
type: tcp | ||
spec: | ||
initialDelaySeconds: 10 | ||
periodSeconds: 5 | ||
failureThreshold: 2 | ||
liveness: | ||
enabled: true | ||
type: tcp | ||
port: 5201 | ||
spec: | ||
initialDelaySeconds: 15 | ||
periodSeconds: 5 | ||
failureThreshold: 2 | ||
ingress: | ||
main: | ||
enabled: false | ||
|
||
pods: | ||
rick: | ||
enabled: true # enable or disable the rick pod | ||
morty: | ||
enabled: true # enable or disable the morty pod | ||
strictPodPlacement: | ||
# if enabled, schedule the pods on specific nodes | ||
enabled: false | ||
rickAgent: prod-rke-agent-1 | ||
mortyAgent: prod-rke-agent-2 | ||
portal: | ||
open: | ||
enabled: false |