We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description: Ingress is not natively support routing of udp/tcp, so need to handle another way. But this is not work in minikube of below procedure.
Procedure of reproduce the issue:
apiVersion: v1 kind: ConfigMap metadata: name: mysql-initdb-config data: init.sql: | CREATE DATABASE IF NOT EXISTS mydb; --- apiVersion: apps/v1 kind: StatefulSet metadata: name: my-mysql-stateful-set namespace: my-test-app spec: replicas: 1 selector: matchLabels: app: my-mysql serviceName: my-mysql template: metadata: labels: app: my-mysql spec: containers: - name: mysql image: mysql:8.3 env: - name: MYSQL_ROOT_PASSWORD value: root ports: - containerPort: 3306 name: mysql volumeMounts: - name: mysql-persistent-storage mountPath: /var/lib/mysql - name: mysql-initdb mountPath: /docker-entrypoint-initdb.d volumes: - name: mysql-initdb configMap: name: mysql-initdb-config volumeClaimTemplates: - metadata: name: mysql-persistent-storage spec: accessModes: [ "ReadWriteOnce" ] resources: requests: storage: 1Gi --- apiVersion: v1 kind: Service metadata: name: mysql-service namespace: my-test-app spec: type: ClusterIP selector: app: my-mysql ports: - protocol: TCP port: 3306 targetPort: 3306
minikube addons enable ingress
minikube tunnel
1
macOS (Default)
Docker
The text was updated successfully, but these errors were encountered:
/kind support
Sorry, something went wrong.
/assign
kundan2707
No branches or pull requests
What Happened?
Description:
Ingress is not natively support routing of udp/tcp, so need to handle another way. But this is not work in minikube of below procedure.
Procedure of reproduce the issue:
minikube addons enable ingress
3.1 official solution: https://minikube.sigs.k8s.io/docs/tutorials/nginx_tcp_udp_ingress/
3.2 Solutions provided by the commentators
Minikube Ingress TCP Services Not Forwarding Traffic #2840
minikube tunnel
to enable the accessAttach the log file
1
Operating System
macOS (Default)
Driver
Docker
The text was updated successfully, but these errors were encountered: