2018-07-14 08:48:22 +00:00
|
|
|
/*
|
|
|
|
Copyright 2017 The Kubernetes Authors.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/ctrox/csi-s3-driver/pkg/s3"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
flag.Set("logtostderr", "true")
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
endpoint = flag.String("endpoint", "unix://tmp/csi.sock", "CSI endpoint")
|
|
|
|
nodeID = flag.String("nodeid", "", "node id")
|
|
|
|
accessKeyID = flag.String("access-key-id", "", "S3 Access Key ID to use")
|
|
|
|
secretAccessKey = flag.String("secret-access-key", "", "S3 Secret Access Key to use")
|
|
|
|
s3endpoint = flag.String("s3-endpoint", "", "S3 Endpoint URL to use")
|
|
|
|
region = flag.String("region", "", "S3 Region to use")
|
2018-07-21 13:23:11 +00:00
|
|
|
mounter = flag.String("mounter", "s3fs", "Specify which Mounter to use")
|
2018-07-16 20:27:45 +00:00
|
|
|
encryptionKey = flag.String("encryption-key", "", "Encryption key for file system (only used with s3ql)")
|
2018-07-14 08:48:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
flag.Parse()
|
|
|
|
|
2018-07-16 18:24:54 +00:00
|
|
|
cfg := &s3.Config{
|
2018-07-14 08:48:22 +00:00
|
|
|
AccessKeyID: *accessKeyID,
|
|
|
|
SecretAccessKey: *secretAccessKey,
|
|
|
|
Endpoint: *s3endpoint,
|
|
|
|
Region: *region,
|
2018-07-21 13:23:11 +00:00
|
|
|
Mounter: *mounter,
|
2018-07-16 20:27:45 +00:00
|
|
|
EncryptionKey: *encryptionKey,
|
2018-07-14 08:48:22 +00:00
|
|
|
}
|
|
|
|
|
2018-07-16 18:24:54 +00:00
|
|
|
driver, err := s3.NewS3(*nodeID, *endpoint, cfg)
|
2018-07-14 08:48:22 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
driver.Run()
|
|
|
|
os.Exit(0)
|
|
|
|
}
|