Compare commits

...

4 Commits

Author SHA1 Message Date
Prima Adi Pradana 183f2e1bd3
Merge 75137dcdc3 into 236ba5690e 2025-06-15 23:01:08 +01:00
Christophe 236ba5690e
Add archive notice to README (#3502) 2025-06-03 10:36:10 -04:00
Quan Zhang fa67e45814
chore: remove @zhangquan and @jeromeju from maintainer list (#3345) 2025-06-03 10:21:02 -04:00
prima 75137dcdc3 --kaniko-dir should take precedence over KANIKO_DIR fix 2024-05-21 23:20:13 +07:00
3 changed files with 10 additions and 2 deletions

View File

@ -1,2 +0,0 @@
Jerome Ju <jeromeju@google.com>
Quan Zhang <zhangquan@google.com>

View File

@ -1,3 +1,11 @@
# 🧊 This project is archived and no longer developed or maintained. 🧊
The code remains available for historic purposes.
The README as of the archival date remains unchanged below for historic purposes.
-----
# kaniko - Build Images In Kubernetes
## 🚨NOTE: kaniko is not an officially supported Google product🚨

View File

@ -122,6 +122,8 @@ var RootCmd = &cobra.Command{
dir := config.KanikoDir
if opts.KanikoDir != constants.DefaultKanikoPath {
dir = opts.KanikoDir
//forcing the KANIKO_DIR to be the same as the flag in current process (all executeCommand())
os.Setenv("KANIKO_DIR", opts.KanikoDir)
}
if err := checkKanikoDir(dir); err != nil {