Skaffold Kubernetes does not display React changes Skaffold Kubernetes does not display React changes kubernetes kubernetes

Skaffold Kubernetes does not display React changes


It turns out I was using the wrong pattern for my file syncs. **/*.js doesn't sync the directory properly.

After changing

sync:        '**/*.css': .        '**/*.scss': .        '**/*.js': .

to

sync:        '***/*.css': .        '***/*.scss': .        '***/*.js': .

It immediately began working.


Update:On the latest versions of skaffold, this pattern no longer works as skaffold abandoned flattening by default. You can now use **/* patterns and get the same results.