Skip to content

Commit

Permalink
chore(jmx): remove jmx port (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores authored May 21, 2024
1 parent 9a36228 commit 065060c
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 12 deletions.
1 change: 0 additions & 1 deletion charts/cryostat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ A Helm chart for deploying [Cryostat](https://cryostat.io/) on Kubernetes and Op
| `core.image.tag` | Tag for the main Cryostat container image | `3.0.0-snapshot` |
| `core.service.type` | Type of Service to create for the Cryostat application | `ClusterIP` |
| `core.service.httpPort` | Port number to expose on the Service for Cryostat's HTTP server | `8181` |
| `core.service.jmxPort` | Port number to expose on the Service for remote JMX connections to Cryostat | `9091` |
| `core.sslProxied` | Enables SSL Proxied Environment Variables, useful when you are offloading SSL/TLS at External Loadbalancer instead of Ingress | `false` |
| `core.ingress.enabled` | Whether to create an Ingress object for the Cryostat service | `false` |
| `core.ingress.className` | Ingress class name for the Cryostat application Ingress | `""` |
Expand Down
4 changes: 0 additions & 4 deletions charts/cryostat/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,5 @@ spec:
targetPort: 8443
protocol: TCP
name: cryostat-https
- port: {{ .Values.core.service.jmxPort }}
targetPort: 9091
protocol: TCP
name: jfr-jmx
selector:
{{- include "cryostat.selectorLabels" $ | nindent 4 }}
5 changes: 0 additions & 5 deletions charts/cryostat/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,6 @@
"type": "number",
"description": "Port number to expose on the Service for Cryostat's HTTP server",
"default": 8181
},
"jmxPort": {
"type": "number",
"description": "Port number to expose on the Service for remote JMX connections to Cryostat",
"default": 9091
}
}
},
Expand Down
2 changes: 0 additions & 2 deletions charts/cryostat/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ core:
type: ClusterIP
## @param core.service.httpPort Port number to expose on the Service for Cryostat's HTTP server
httpPort: 8181
## @param core.service.jmxPort Port number to expose on the Service for remote JMX connections to Cryostat
jmxPort: 9091
## @param core.sslProxied Enables SSL Proxied Environment Variables, useful when you are offloading SSL/TLS at External Loadbalancer instead of Ingress
sslProxied: false
ingress:
Expand Down

0 comments on commit 065060c

Please sign in to comment.