Skip to content

Commit

Permalink
fix(admission-controller): Use EKS Terraform friendly ports (#1315)
Browse files Browse the repository at this point in the history
  • Loading branch information
airadier authored Aug 30, 2023
1 parent 1f497ea commit d25c4d7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion charts/admission-controller/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: admission-controller
description: Sysdig Admission Controller using Sysdig Secure inline image scanner
type: application
version: 0.13.5
version: 0.13.6
appVersion: 3.9.26
home: https://sysdiglabs.github.io/admission-controller/
icon: https://avatars.githubusercontent.com/u/5068817?s=200&v=4
Expand Down
8 changes: 4 additions & 4 deletions charts/admission-controller/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ For example:

```bash
helm upgrade --install admission-controller sysdig/admission-controller \
--create-namespace -n sysdig-admission-controller --version=0.13.5 \
--create-namespace -n sysdig-admission-controller --version=0.13.6 \
--set sysdig.secureAPIToken=YOUR-KEY-HERE,clusterName=YOUR-CLUSTER-NAME
```

Expand All @@ -80,7 +80,7 @@ For example:

```bash
helm upgrade --install admission-controller sysdig/admission-controller \
--create-namespace -n sysdig-admission-controller --version=0.13.5 \
--create-namespace -n sysdig-admission-controller --version=0.13.6 \
--values values.yaml
```
Expand Down Expand Up @@ -138,8 +138,8 @@ The following table lists the configurable parameters of the `admission-controll
| webhook.v2.nats.insecure | Allow insecure TLS certificates in backend connection to NATS service | <code>false</code> |
| webhook.v2.nats.url | Override the NATS service connection URL | <code>""</code> |
| webhook.v2.service.type | Use this type as webhook service | <code>ClusterIP</code> |
| webhook.v2.service.port | Configure port for the V2 webhook service | <code>7443</code> |
| webhook.v2.http.port | HTTP serve port where the requests will be served from | <code>7443</code> |
| webhook.v2.service.port | Configure port for the V2 webhook service | <code>6443</code> |
| webhook.v2.http.port | HTTP serve port where the requests will be served from | <code>6443</code> |
| webhook.v2.image.registry | The KSPM Admission Controller image registry | <code>quay.io</code> |
| webhook.v2.image.repository | The KSPM Admission Controller image repository | <code>sysdig/secure-admission-controller</code> |
| webhook.v2.image.tag | The KSPM Admission Controller image tag | <code>1.0.1</code> |
Expand Down
4 changes: 2 additions & 2 deletions charts/admission-controller/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,10 @@ webhook:
# Use this type as webhook service
type: ClusterIP
# Configure port for the V2 webhook service
port: 7443
port: 6443
http:
# HTTP serve port where the requests will be served from
port: 7443
port: 6443
# KSPM Admission Controller container image
image:
# The KSPM Admission Controller image registry
Expand Down
4 changes: 2 additions & 2 deletions charts/sysdig-deploy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: sysdig-deploy
description: A chart with various Sysdig components for Kubernetes
type: application
version: 1.19.3
version: 1.19.4
maintainers:
- name: AlbertoBarba
email: [email protected]
Expand All @@ -20,7 +20,7 @@ dependencies:
- name: admission-controller
# repository: https://charts.sysdig.com
repository: file://../admission-controller
version: ~0.13.2
version: ~0.13.6
alias: admissionController
condition: admissionController.enabled
- name: agent
Expand Down

0 comments on commit d25c4d7

Please sign in to comment.