我正在用 Go 开发一个测试 hello 应用程序,它可以访问 Postgres 数据库。这将使用 statefulset 在 kubernetes 中发布,并且有一个带有两个容器镜像的 pod(一个用于 pgsql,一个用于 goapp)。
├── hello-app
| ├── templates
| ├── file1.gohtml
| ├── file2.gohtml
| └── file3.gohtml
| ├── Dockerfile
| └── hello-app.go
├── psql
| ├── Dockerfile
| ├── createUser.sh
| └── createDB.sql
├── yaml
| └── statefulset.yaml
我坚持让 Dockerfile 和 Go 应用程序绑定。在我的第一个 Go 代码中,我使用 'template.Must' 函数来引用 'templates' 目录。显然,当我将其作为容器运行时,目录结构是不同的。
我还没有完全弄清楚如何在 Dockerfile 中执行此操作,并且正在寻找一些指导。
/app/hello-app.go
package main
import (
"database/sql"
"fmt"
"os"
_ "github.com/lib/pq"
"html/template"
"net/http"
"strconv"
)
var db *sql.DB
var tpl *template.Template
func init() {
host := os.Getenv("VARIABLE")
var err error
db, err = sql.Open("postgres", "postgres://user:password@"+host+"/dbname?sslmode=disable")
if err != nil {
panic(err)
}
if err = db.Ping(); err != nil {
panic(err)
}
fmt.Println("You connected to your database.")
tpl = template.Must(template.ParseGlob("templates/*.gohtml"))
/app/Dockerfile
FROM golang:1.8-alpine
RUN apk add --update go git
RUN go get github.com/lib/pq/...
ADD . /go/src/hello-app
RUN go install hello-app
Add templates templates/
ENV USER=username \
PASSWORD=password \
DB=dbname \
HOST=hostname \
PORT=5432
FROM alpine:latest
COPY --from=0 /go/bin/hello-app/ .
ENV PORT 4040
CMD ["./hello-app"]
当我在 kubernetes (GCP) 中运行它时,我在 hello-app 容器上得到以下日志条目。
恐慌:html/template:模式不匹配任何文件:
templates/*.gohtml
goroutine 1 [running]:html/template.Must