You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes we need to deploy using manifests that doesn't exist in the local machine. like someone only provides the manifest in remote repository, snippet or gists. it would be better if skaffold support deploying using manifest from url.
and we don't need to execute kubectl apply -f https://gist.githubusercontent.com/someone/somesnippet/raw for manifests that doesn't exist in the local machine.
Actual behavior
Not supported yet
Steps to reproduce the behavior
Add URLManifests in KubectlDeploy struct schema
Create some function to read manifest from url eg: using http.NewRequest and append it to kubectl.ManifestList
The text was updated successfully, but these errors were encountered:
Expected behavior
Sometimes we need to deploy using manifests that doesn't exist in the local machine. like someone only provides the manifest in remote repository, snippet or gists. it would be better if skaffold support deploying using manifest from url.
This might look the following:
and we don't need to execute
kubectl apply -f https://gist.githubusercontent.com/someone/somesnippet/raw
for manifests that doesn't exist in the local machine.Actual behavior
Not supported yet
Steps to reproduce the behavior
URLManifests
inKubectlDeploy
struct schemaeg: using http.NewRequest
and append it tokubectl.ManifestList
The text was updated successfully, but these errors were encountered: