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
Xline can not working with dns on kubernetes , Just got the error of Error: invalid socket address syntax, here is the yaml:
Error: invalid socket address syntax
apiVersion: v1 kind: Service metadata: name: xline labels: app: xline spec: selector: app: xline ports: - name: xline port: 2379 clusterIP: None --- apiVersion: v1 kind: Service metadata: name: xline labels: app: xline spec: selector: app: xline ports: - name: xline protocol: TCP port: 2379 targetPort: 2379 --- apiVersion: apps/v1 kind: StatefulSet metadata: name: xline spec: serviceName: xline replicas: 3 selector: matchLabels: app: xline template: metadata: labels: app: xline spec: containers: - name: xline image: datenlord/xline:v0.4.1 command: - /bin/sh - -c - xline --name $POD_NAME --members xline-0=xline-0:2379,xline-1=xline-1:2379,xline-2=xline-2:2379 --data-dir /var/lib/xline --storage-engine rocksdb resources: requests: cpu: "500m" memory: "500Mi" env: - name: POD_NAME valueFrom: fieldRef: fieldPath: metadata.name ports: - containerPort: 2379 name: xline protocol: TCP volumeMounts: - name: data mountPath: /var/lib/xline volumeClaimTemplates: - metadata: name: data spec: accessModes: [ "ReadWriteOnce" ] resources: requests: storage: 200Mi
Remind me if i missed something,Thanks.
The text was updated successfully, but these errors were encountered:
feat: support dns resolving for Xline cluster
c504baf
Closes: xline-kv#351 Signed-off-by: bsbds <69835502+bsbds@users.noreply.github.com>
feat: support dns resolution for Xline cluster
666777e
6c56612
Closes: #351 Signed-off-by: bsbds <69835502+bsbds@users.noreply.github.com>
Successfully merging a pull request may close this issue.
Description about the feature
Xline can not working with dns on kubernetes , Just got the error of
Error: invalid socket address syntax
, here is the yaml:Remind me if i missed something,Thanks.
Code of Conduct
The text was updated successfully, but these errors were encountered: