* * image build in cluster now use InitContainer to do the image building inside pods, which invoke docker again node's docker daemon * create a docker build image tool fx/contrib/docker_packer * clean up no need env in GitHub action workflow * bump version
9 lines
178 B
Go
9 lines
178 B
Go
package kubernetes
|
|
|
|
// ConfigMap is the key to function docker project source code in configmap
|
|
var ConfigMap = struct {
|
|
AppMetaEnvName string
|
|
}{
|
|
AppMetaEnvName: "APP_META",
|
|
}
|