8000 Optimize deploy commands by ignoring all files and enabling remote execution by oktetobot · Pull Request #4698 · okteto/okteto · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Optimize deploy commands by ignoring all files and enabling remote execution #4698

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 36 additions & 25 deletions .oktetoignore
Original file line number Diff line number Diff line change
@@ -1,26 +1,37 @@
/bin
/docs
/integration
/.circleci
/.git
/.github
/.vscode
/artifacts
/images
/samples
/.codecov.yml
/.copyright-header.tmpl
/.deepsource.toml
/.DEREK.yml
/.editorconfig
/.gitignore
/.golangci.yml
# Global ignores (applied to all commands)
bin/
docs/
.circleci/
.git/
.github/
.vscode/
artifacts/
images/
samples/
.*yml
.*yaml
.*toml
.*tmpl
.editorconfig
.gitignore
.oktetoignore
./mdlrc
/.pre-commit-config.yaml
/.prettierrc
/.prettierignore
/.stignore
/.yaml-lint.yml
/CODE_OF_CONDUCT.md
/CODEOWNERS
.mdlrc
.pre-commit-config.*
.prettier*
.stignore
CODE_OF_CONDUCT.md
CODEOWNERS

# Applied to deploy commands only - ignore everything
[deploy]
*

# Applied to destroy commands only - ignore everything
[destroy]
*

# Applied to all test commands
[test]
docs/
samples/
scripts/ci/
2 changes: 1 addition & 1 deletion okteto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ build:
context: .
dockerfile: Dockerfile
args:
- VERSION_STRING=$OKTETO_GIT_COMMIT
VERSION_STRING: $OKTETO_GIT_COMMIT
deploy:
image: $OKTETO_BUILD_CLI_IMAGE
commands:
Expand Down
0