kops: Unable to use a local filesystem state store
1. What kops version are you running? The command kops version, will display
this information.
1.11.0
2. What Kubernetes version are you running? kubectl version will print the
version if a cluster is running or provide the Kubernetes version specified as
a kops flag.
N/A
3. What cloud provider are you using?
AWS
4. What commands did you run? What is the simplest way to reproduce this issue?
kops create cluster --state 'file:///tmp/kops-state' --zones us-east-1a foo.cluster.k8s.local
5. What happened after the commands executed?
State Store: Invalid value: "file:///tmp/kops-state": Unable to read state store.
Please use a valid state store when setting --state or KOPS_STATE_STORE env var.
For example, a valid value follows the format s3://<bucket>.
Trailing slash will be trimmed.
Issue is caused by vfs.IsClusterReadable returning false for all filesystem state storage as called by factory.Clientset
6. What did you expect to happen?
Not to get an error about being unable to read the state store.
7. Please provide your cluster manifest. Execute
kops get --name my.example.com -o yaml to display your cluster manifest.
You may want to remove your cluster name and other sensitive information.
Irrelevant
8. Please run the commands with most verbose logging by adding the -v 10 flag.
Paste the logs into this report, or in a gist and provide the gist link here.
I0213 14:25:54.779621 34407 factory.go:68] state store file:///tmp/kops-state
State Store: Invalid value: "file:///tmp/kops-state": Unable to read state store.
Please use a valid state store when setting --state or KOPS_STATE_STORE env var.
For example, a valid value follows the format s3://<bucket>.
Trailing slash will be trimmed.
9. Anything else do we need to know?
The documentation specifically claims that local filesystem state storage is supported with the file:// protocol.
The bug was triggered when attempting to build a CI workflow around:
- sync remote S3 state bucket to a local directory
- change
.spec.configBaseto refer to the local directory - run
kops replace -f <candidate.yaml> --state file:///path/to/local/state/dir - run
kops update cluster <cluster_name> --state file:///path/to/local/state/dir
In a CI workflow, this would allow us to preview (for example, during a pull request) how a kops update cluster would run, without touching the actual remote S3 state bucket (from running kops replace).
About this issue
- Original URL
- State: closed
- Created 5 years ago
- Reactions: 18
- Comments: 18 (6 by maintainers)
Also running into this issue, whilst trying to wrap kops as part of a larger deployment tool.
Likewise. I got bit by this… unfortunately.
Reproduced in
1.12.1 (git-e1c317f9c)Same in kops 1.14.0