Yujun Zhang
ed91bce275
Add example plugin for go-getter
2019-08-30 11:14:46 +08:00
Pengyuan Bian
73660af10c
fix environment variable typo.
2019-08-26 16:24:44 -07:00
Kubernetes Prow Robot
33ad02a6b4
Merge pull request #1383 from richardmarshall/smp_patch_directive
...
Handle ordering patch with SMP delete directives
2019-08-23 11:15:18 -07:00
Jeff Regan
35b39763dd
Merge pull request #1445 from liggitt/patch-path
...
Fix patch path example
2019-08-20 15:15:03 -07:00
Jeff Regan
fb8b314a29
Merge pull request #1426 from fleeto/translate-zh-glossary
...
translate-zh: glossary.md
2019-08-20 15:04:22 -07:00
Jeffrey Regan
423a8a6e0d
Test examples against HEAD as well as against latest release.
2019-08-20 14:10:01 -07:00
Jordan Liggitt
8e9c08ea61
Fix patch path example
2019-08-14 15:55:55 -04:00
Richard Marshall
9481e3fba6
docs: Update patchesStrategicMerge documentation
2019-08-13 13:38:42 -07:00
Vincent C
78c9729252
translate-zh: glossary.md
2019-08-03 20:40:58 +08:00
郭旭东
b4d6e89fa2
Update zh-README.md
2019-08-01 15:19:14 +08:00
Richard Marshall
963913f9ef
Automatically anchor resource selector patterns
2019-07-29 17:57:33 -07:00
Jingfang Liu
46905588ac
add document for inline patch ( #1411 )
2019-07-29 15:15:06 -07:00
Jerome Brette
336378b114
Update release notes
2019-07-25 00:12:51 +00:00
jingfangliu
29959551da
release note for v3.1.0
2019-07-24 14:16:09 -07:00
Kubernetes Prow Robot
3cb6c7f1f4
Merge pull request #1349 from yujunz/faq
...
Add FAQ about how to customize configuration
2019-07-17 11:26:11 -07:00
Kubernetes Prow Robot
7632839bc8
Merge pull request #1350 from yujunz/docs/plugins
...
Convert go plugin example to GPG based
2019-07-17 10:40:37 -07:00
Yujun Zhang
c3ea109b59
Update goPluginGuidedExample.md
2019-07-17 08:19:50 +08:00
Yujun Zhang
fb44880b8c
Add back GCP KMS example
2019-07-16 20:10:16 +08:00
Yujun Zhang
f1dbab9dee
Convert go plugin example to GPG based
2019-07-14 11:33:37 +08:00
Yujun Zhang
bfafbbf47f
Add FAQ about how to customize configuration
2019-07-14 10:39:45 +08:00
Liu Lan
120ba6b870
docs/versioningPolicy.md: fix expired urls
...
Signed-off-by: Liu Lan <liulan@umcloud.com >
2019-07-10 11:41:54 +08:00
Richard Marshall
f996ac82c7
Fix typo in the go plugin guide
2019-07-03 20:48:07 -07:00
Jeffrey Regan
6b597f8711
Update v3 notes
2019-07-03 12:40:30 -07:00
Jeff Regan
3bf13f83d3
Update goPluginGuidedExample.md
2019-07-03 12:24:23 -07:00
Jeff Regan
c64a72f1f9
Update goPluginGuidedExample.md
2019-07-03 11:34:16 -07:00
郭旭东
28ad36b02c
Merge remote-tracking branch 'upstream/master'
2019-07-03 09:38:44 +08:00
郭旭东
cad8a7bd3f
fix zh/fields.md
2019-07-03 09:21:33 +08:00
Jeff Regan
3f239fb4a5
Update bugs.md
2019-06-27 17:40:34 -07:00
Jeffrey Regan
e1233a0fbc
Plainer plugin security discussion.
2019-06-27 11:08:26 -07:00
郭旭东
7117961234
Chinese localization & fix fields.md
2019-06-27 16:52:00 +08:00
Jeff Regan
d410252cf8
Update goPluginCaveats.md
2019-06-26 16:56:46 -07:00
Jeff Regan
4235c57657
Update goPluginCaveats.md
2019-06-26 16:55:33 -07:00
Jeffrey Regan
4d399ad89c
More plugin docs.
2019-06-26 16:37:26 -07:00
Jeffrey Regan
55585d8da5
Update notes for releasing.
2019-06-26 13:10:41 -07:00
Jeffrey Regan
7a67645558
Update versioning policy.
2019-06-24 17:26:42 -07:00
Jeff Regan
b0f59358d9
Update v3.0.0.md
2019-06-24 16:17:36 -07:00
Jeff Regan
0e6c7d8af7
Update v3.0.0.md
2019-06-24 16:15:54 -07:00
Jeff Regan
9c20085ca9
Update goPluginGuidedExample.md
2019-06-24 15:27:14 -07:00
Jeff Regan
d48a52055a
Update goPluginGuidedExample.md
2019-06-24 15:25:03 -07:00
Jeffrey Regan
1740ca6a16
Add another detailed plugin example.
2019-06-24 15:19:49 -07:00
jregan
a7df00c07a
Starting v3 release for plugin developers.
...
[doc]: https://github.com/golang/go/wiki/Modules#releasing-modules-v2-or-higher
Per this Go modules [doc] a repo or branch that's
already tagged v2 or higher should increment the major
version (e.g. go to v3) when releasing their first Go
module-based packages.
At the moment, the kustomize repo has these top level
packages in the sigs.k8s.io/kustomize module:
- `cmd` - holds main program for kustomize
Conceivably someone can depend on this
package for integration tests.
- `internal` - intentionally unreleased subpackages
- `k8sdeps` - an adapter wrapping k8s dependencies
This exists only for use in pre-Go-modules kustomize-into-kubectl
integration and won't live much longer (as everything involved is
switching to Go modules).
- `pkg` - kustomize packages for export
This should shrink in later versions, since
the surface area is too large, containing
sub-packages that should be in 'internal'.
- `plugin` - holds main programs for plugins
This PR changes the top level go.mod file from
```
module sigs.k8s.io/kustomize
```
to
```
module sigs.k8s.io/kustomize/v3
```
and adjusts all import statements to
reflect the change.
2019-06-23 15:05:59 -07:00
Leo Xiong
a755558beb
Fix typo
2019-06-21 12:29:31 +12:00
Jeffrey Regan
69c11780eb
Another plugin demo.
2019-06-20 11:45:26 -07:00
Kubernetes Prow Robot
293c8bef54
Merge pull request #1202 from mamoit/patch-1
...
Typo correction in 2.1.0 release notes
2019-06-19 12:38:19 -07:00
Miguel Almeida
24011cf2a5
Simple flag typo correction
...
The flag is load_restrictor and not load_restrictions.
2019-06-19 11:35:33 +01:00
Yujun Zhang
7c9181317f
Fix typo in docs
2019-06-19 15:09:31 +08:00
郭旭东
cc663bb08c
update docs/zh/README.md
2019-06-19 09:26:44 +08:00
Jeff Regan
26ed9b7c58
Fix date of release v2.1.0
2019-06-18 15:30:37 -07:00
Jeff Regan
8ff0b5423d
Update v2.1.0.md
2019-06-18 15:27:27 -07:00
Jeffrey Regan
66b816aabc
Update release note links.
2019-06-18 15:24:10 -07:00