通过 HTTP 和 SSH 通过 Ingress 访问 Kubernetes Git 容器

Access Kubernetes Git Container via Ingress via HTTP as well as SSH

我有一个小型的 kubernetes (1.3) 集群(基本上是一个节点),想在其中安装 gogs。 Gogs "installed" 使用 Helm。我的 helm 图表中确实有以下模板:

http-stuff 配置正确,我可以毫无问题地通过 http 访问容器以及包含的 git-存储库。现在我也想将 ssh 用于 git-连接。我尝试了nginx-ingress的--tcp-services-configmap配置,但是没有用。 Ingress Controller 的日志指出,配置的服务没有任何活动端点,我觉得这很奇怪,因为 http 东西正在工作。

更新

刚刚在DNS上做了一个nmap,2222端口没有打开。这看起来像是配置问题。该端口在容器上打开(通过从 ndoe 连接到集群 ip 进行测试)。

猜测问题出在 Ingress Controller 的日志中,配置的服务没有任何活动端点。

我的服务配置是:

apiVersion: v1
kind: Service
metadata:
    name: {{ template "fullname" . }}
    labels:
        app: {{ template "fullname" . }}
spec:
    ports:
       - name: http
         port: 80
         targetPort: http
         protocol: TCP
       - name: ssh
         port: 2222
         targetPort: ssh
         protocol: TCP
     selector:
         app: {{ template "fullname" . }}

配置图是:

apiVersion: v1
kind: ConfigMap
metadata:
    name: tcp-configmap-ssh
data:
    2222: "default/{{ template "fullname" . }}:2222"

回答我自己的问题。这个问题是一个配置问题,是由我自己的错误引起的。

Nginx-Ingress Resource的ReplicationController基本上没贴出来。这个缺少端口 2222。所以现在它看起来像:

apiVersion: v1
kind: ReplicationController
metadata:
  name: {{ template "fullname" . }}
  labels:
    k8s-app: "{{ .Chart.Name }}"
    chart: "{{.Chart.Name}}-{{.Chart.Version}}"
spec:
  replicas: 1
  selector:
    k8s-app: "{{ .Chart.Name }}"
  template:
    metadata:
      labels:
        name: {{ template "fullname" . }}
        k8s-app: "{{ .Chart.Name }}"
        chart: "{{.Chart.Name}}-{{.Chart.Version}}"
    spec:
      terminationGracePeriodSeconds: 60
      containers:
      - image: gcr.io/google_containers/nginx-ingress-controller:0.8.3
        name: "{{ .Chart.Name }}"
        imagePullPolicy: Always
        readinessProbe:
          httpGet:
            path: /healthz
            port: 10254
            scheme: HTTP
        livenessProbe:
          httpGet:
            path: /healthz
            port: 10254
            scheme: HTTP
          initialDelaySeconds: 10
          timeoutSeconds: 1
        env:
          - name: POD_NAME
            valueFrom:
              fieldRef:
                fieldPath: metadata.name
          - name: POD_NAMESPACE
            valueFrom:
              fieldRef:
                fieldPath: metadata.namespace
        ports:
        - containerPort: 80
          hostPort: 80
        # we do need to expose 2222 to be able to access this port via
        # the tcp-services
        - containerPort: 2222
          hostPort: 2222
        args:
        - /nginx-ingress-controller
        - --default-backend-service=$(POD_NAMESPACE)/default-http-backend
        - --tcp-services-configmap=$(POD_NAMESPACE)/tcp-configmap-ssh