Skip to content

Commit

Permalink
Merge pull request #60 from qpoint-io/marc-barry/charts-updates
Browse files Browse the repository at this point in the history
Update the qtap and qtap-operator charts.
  • Loading branch information
marc-barry authored Jan 23, 2024
2 parents 7146ac8 + 99f7b23 commit fe344e5
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion charts/qtap-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ apiVersion: v2
name: qtap-operator
description: A Helm chart for a Kubernetes Qtap operator
type: application
version: 0.0.14
version: 0.0.15
# This is the semantic version of https://github.com/qpoint-io/kubernetes-qtap-operator/releases being deployed
appVersion: "v0.0.9"
4 changes: 2 additions & 2 deletions charts/qtap-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ injectPodAnnotationsConfigmap:
annotationsYaml: |-
qpoint.io/inject-ca: "true"
qpoint.io/qtap-init-tag: "v0.0.8"
qpoint.io/qtap-tag: "v0.0.11"
qpoint.io/qtap-tag: "v0.0.12"
qpoint.io/qtap-init-egress-port-mapping: "10080:80,10443:443"
qpoint.io/qtap-init-egress-accept-uids: "1010"
qpoint.io/qtap-init-egress-accept-gids: "1010"
qpoint.io/qtap-uid: "1010"
qpoint.io/qtap-gid: "1010"
qpoint.io/qtap-log-level: "error"
qpoint.io/qtap-log-level: "info"
qpoint.io/qtap-log-encoding: "json"
qpoint.io/qtap-log-caller: "false"
qpoint.io/qtap-egress-http-listen: "0.0.0.0:10080"
Expand Down
4 changes: 2 additions & 2 deletions charts/qtap/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.12
version: 0.0.13

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "v0.0.11"
appVersion: "v0.0.12"
4 changes: 2 additions & 2 deletions charts/qtap/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ spec:
- name: STATUS_LISTEN
value: "0.0.0.0:{{ .Values.status.port }}"
ports:
- name: egress-http-service
- name: e-http-service
containerPort: {{ .Values.service.egressHttpPort }}
protocol: TCP
- name: egress-https-service
- name: e-https-service
containerPort: {{ .Values.service.egressHttpsPort }}
protocol: TCP
- name: status
Expand Down
8 changes: 4 additions & 4 deletions charts/qtap/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.egressHttpPort }}
targetPort: egress-http-service
targetPort: e-http-service
protocol: TCP
name: egress-http-service
name: e-http-service
- port: {{ .Values.service.egressHttpsPort }}
targetPort: egress-https-service
targetPort: e-https-service
protocol: TCP
name: egress-https-service
name: e-https-service
selector: {{- include "qtap.selectorLabels" . | nindent 4 }}
2 changes: 1 addition & 1 deletion charts/qtap/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""

args: ["gateway", "--envoy-log-level=error", "--log-level=info"]
args: ["gateway", "--envoy-log-level=error", "--log-level=info", "--dns-lookup-family=V4_ONLY"]

endpoint: "https://api.qpoint.io"

Expand Down

0 comments on commit fe344e5

Please sign in to comment.