Skip to content

Commit

Permalink
fix chart values
Browse files Browse the repository at this point in the history
  • Loading branch information
kkb0318 committed Jun 1, 2024
1 parent 6016727 commit dc849da
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 25 deletions.
4 changes: 2 additions & 2 deletions charts/irsa-manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ kubectl create secret generic aws-secret -n irsa-manager-system \
| controllerManager.manager.args[2] | string | `"--leader-elect"` | |
| controllerManager.manager.containerSecurityContext.allowPrivilegeEscalation | bool | `false` | |
| controllerManager.manager.containerSecurityContext.capabilities.drop[0] | string | `"ALL"` | |
| controllerManager.manager.image.repository | string | `"controller"` | |
| controllerManager.manager.image.tag | string | `"latest"` | |
| controllerManager.manager.image.repository | string | `"ghcr.io/kkb0318/irsa-manager"` | |
| controllerManager.manager.image.tag | string | `"APP_VERSION"` | |
| controllerManager.manager.resources.limits.cpu | string | `"500m"` | |
| controllerManager.manager.resources.limits.memory | string | `"128Mi"` | |
| controllerManager.manager.resources.requests.cpu | string | `"10m"` | |
Expand Down
30 changes: 15 additions & 15 deletions charts/irsa-manager/values.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
controllerManager:
kubeRbacProxy:
args:
- --secure-listen-address=0.0.0.0:8443
- --upstream=http://127.0.0.1:8080/
- --logtostderr=true
- --v=0
- --secure-listen-address=0.0.0.0:8443
- --upstream=http://127.0.0.1:8080/
- --logtostderr=true
- --v=0
containerSecurityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
- ALL
image:
repository: gcr.io/kubebuilder/kube-rbac-proxy
tag: v0.15.0
Expand All @@ -22,17 +22,17 @@ controllerManager:
memory: 64Mi
manager:
args:
- --health-probe-bind-address=:8081
- --metrics-bind-address=127.0.0.1:8080
- --leader-elect
- --health-probe-bind-address=:8081
- --metrics-bind-address=127.0.0.1:8080
- --leader-elect
containerSecurityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
- ALL
image:
repository: controller
tag: latest
repository: ghcr.io/kkb0318/irsa-manager
tag: APP_VERSION
resources:
limits:
cpu: 500m
Expand All @@ -46,8 +46,8 @@ controllerManager:
kubernetesClusterDomain: cluster.local
metricsService:
ports:
- name: https
port: 8443
protocol: TCP
targetPort: https
- name: https
port: 8443
protocol: TCP
targetPort: https
type: ClusterIP
8 changes: 1 addition & 7 deletions config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,2 @@
resources:
- manager.yaml
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
images:
- name: controller
newName: ghcr.io/kkb0318/irsa-manager
newTag: latest
- manager.yaml
2 changes: 1 addition & 1 deletion config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ spec:
- /manager
args:
- --leader-elect
image: controller:latest
image: ghcr.io/kkb0318/irsa-manager:APP_VERSION
env:
- name: AWS_ACCESS_KEY_ID
valueFrom:
Expand Down

0 comments on commit dc849da

Please sign in to comment.