docs-v1/design_proposals/transparent-init.md
This proposal is brought about by an older issue, #1273
With the recent focus on skaffold UX, we've decided to see how we can improve the onboarding experience when using skaffold.
One way we'd like to do this is by allowing the user to simply install skaffold and run skaffold commands like run, dev, or debug in their project, without having to first run skaffold init and go through the interactive portion of creating a config for their project.
To do this, we'd like to automatically create a config upon invocation of skaffold commands, so that the user doesn't have to see something like this
❯ skaffold dev
skaffold config file skaffold.yaml not found - check your current working directory, or try running `skaffold init`
when trying to run skaffold.
This proposal is meant to design the flow of a user running a command without a skaffold config file already on disk. It does not cover the actual functionality of skaffold init --force, and doesn't address the further changes that will be made to that functionality.
This functionality is planned to initially work with the run, dev, and debug commands, as we want to cater to the commands that are meant to provide the best first time UX.
With transparent init, a user's first run of skaffold dev could look something like this:
Given a simple project structure:
project-dir
├── Dockerfile
├── README.md
├── k8s-pod.yaml
└── main.go
Running skaffold dev:
❯ skaffold dev
This seems to be your first time running skaffold in this project. If you choose to continue, skaffold will:
- Create a skaffold config file for you
- Build your application using docker
- Deploy your application to your current kubernetes context using kubectl
Please double check the above steps. Deploying to production kubernetes clusters can be destructive.
Would you like to continue?
> yes
no
Listing files to watch...
- skaffold-example
Generating tags...
- skaffold-example -> skaffold-example:v1.14.0-59-g7e5ae4cbc-dirty
Checking cache...
- skaffold-example: Not found. Building
Found [minikube] context, using local docker daemon.
Building [skaffold-example]...
Sending build context to Docker daemon 3.072kB
...
There are two approaches to implementation that I've considered:
Creating the config in memory using init functions (Preferred)
Under the hood view:
skaffold dev is runskaffold.yaml file in the directory, finds nothingskaffold init is run to generate a configskaffold dev continues like normalCreating a temporary skaffold.yaml by running skaffold init --force
Under the hood view:
skaffold dev is runskaffold.yaml file in the directory, finds nothingskaffold init --forceskaffold dev continues like normalShould generation of the config all happen in memory? By refactoring DoInit() we could probably generate the config and start using it without having to write/read the skaffold.yaml from disk
I think this would be preferred. We could eliminate an unecessary read from disk by doing so.
Should we prompt the user to ask if they'd like to save this config for future use?
I believe that it would be fine to write to disk automatically. The logging will make it clear that this is being done and after the skaffold session is finished they can decide to remove the file or not.
Should the config being used be printed to the terminal? Tradeoff of information vs clutter
I would say that we don't need to. Printing the config would add a large clutter, and if the user needs to view the config used, they can view the skaffold config that is written to disk.
If we decide to have the config written to disk and kept in memory, we may want to split this into a couple PRs. Maybe something like this:
DoInit() so that it is broken into parts that we can use laterIf we decide upon the approach in which the skaffold.yaml is written to/read from disk, this could be done in 1 PR, as a refactor wouldn't be necessary.
New integration tests can be added to check that invocations of skaffold commands in folders without a skaffold config still run properly. With the other plans to change skaffold init, these will have to be updated as well.