mirror of
https://github.com/labring/sealos.git
synced 2026-09-01 15:38:06 +08:00
77fdddcb53
* fix sync error * review * add licnese * add Kubefile * Update controllers.yml add cluster image for objectstorage --------- Co-authored-by: Jiahui <bxy4543@163.com>
14 lines
267 B
Plaintext
14 lines
267 B
Plaintext
FROM scratch
|
|
|
|
USER 65532:65532
|
|
|
|
COPY registry registry
|
|
COPY manifests manifests
|
|
|
|
ENV DEFAULT_NAMESPACE objectstorage-system
|
|
ENV OSAdminSecret=""
|
|
ENV OSInternalEndpoint=""
|
|
ENV OSExternalEndpoint=""
|
|
|
|
CMD ["kubectl apply -f manifests/deploy.yaml -n $DEFAULT_NAMESPACE"]
|