Frank Farzan
7372a371b4
kyaml: Handle functions in top-level directory.
...
scope() method uses HasPrefix to detect whether a resource
is in a subdirectory of function directory. It doesn't handle
the case when the function is in top-level dir ('.').
2020-01-31 14:41:56 -08:00
Jeff Regan
03cc4e3848
Merge pull request #2114 from mortent/FlexiblePrinting
...
Restructure the Apply command to separate printing from the code that actually does the work
2020-01-28 14:50:18 -08:00
Jeff Regan
0b33b3501f
Merge pull request #2154 from karl-gustav/patch-1
...
Fix install_kustomize.sh so that it works on alpine linux
2020-01-28 09:31:29 -08:00
Kubernetes Prow Robot
8e2ec69d85
Merge pull request #2136 from yujunz/docs/how
...
Add document about how `kustomize build` works
2020-01-28 09:25:42 -08:00
Jeff Regan
0ce076758d
Merge pull request #2150 from haiyanmeng/stats
...
Add `fileType` and `User` into the index
2020-01-28 09:18:31 -08:00
Morten Torkildsen
68195ffabb
Restructure the Apply command to separate printing from the code that actually does the work
2020-01-27 14:50:08 -08:00
Karl Gustav
7eca29daee
Fix install_kustomize.sh so it works on alpine linux
...
The install script fails and thinks that alpine linux is in windows. This is because
`$OSTYPE` in alpine linux is linux-musl, not linux-gnu as this script assumes.
I tested these changes with this script:
```
set -euo pipefail
opsys=""
function check {
opsys=windows
if [[ "$OSTYPE" == linux* ]]; then
opsys=linux
elif [[ "$OSTYPE" == darwin* ]]; then
opsys=darwin
fi
}
OSTYPE="linux-gnu"
check
test "$opsys" == "linux" || echo $OSTYPE test failed
OSTYPE="linuxsomething"
check
test "$opsys" == "linux" || echo $OSTYPE test failed
OSTYPE="darwinsomething"
check
test "$opsys" == "darwin" || echo $OSTYPE test failed
OSTYPE="either"
check
test "$opsys" == "windows" || echo $OSTYPE test failed
```
ref: #2146
2020-01-25 22:46:10 +01:00
Haiyan Meng
154208d331
Improve the efficiency of crawling github by skipping the documents
...
already in the index
2020-01-24 19:55:56 -08:00
Kubernetes Prow Robot
a851232100
Merge pull request #2153 from seans3/apply-prune
...
Connect prune to apply
2020-01-24 16:25:04 -08:00
Sean Sullivan
0c022db1e6
Connect prune to apply
2020-01-24 16:06:53 -08:00
Kubernetes Prow Robot
fec8881819
Merge pull request #2151 from seans3/inventory-set
...
Adds the PruneOptions and implements the methods for this struct
2020-01-24 15:05:04 -08:00
Sean Sullivan
7b44f71caf
Adds the PruneOptions and implements the methods for this struct
2020-01-24 14:43:12 -08:00
Kubernetes Prow Robot
2d3cb22bc0
Merge pull request #2147 from HowJMay/fix_typo
...
fix typos
2020-01-24 10:14:32 -08:00
Haiyan Meng
b7b88cae76
Add curl commands for querying different filetypes
2020-01-23 16:04:55 -08:00
Jeff Regan
e787144811
Merge pull request #2145 from mortent/FixStatusEventOutput
...
Clean up output format for status events command
2020-01-23 14:03:58 -08:00
Morten Torkildsen
0f5256d952
Clean up output format for status events command
2020-01-23 12:38:11 -08:00
Jeff Regan
53432ba4bb
Merge pull request #2135 from seans3/inventory-set
...
Fixed inventory Equal(), checking nil as passed parameter
2020-01-23 10:06:58 -08:00
HowJMay
00f68c12a8
fix typos
...
Fix typos
2020-01-23 23:35:38 +08:00
Jeff Regan
32ffbdf5ca
Merge pull request #2140 from beantaxi/patch-1
...
Rename authoriing.md to authoring.md
2020-01-22 15:57:23 -08:00
Haiyan Meng
0820865e1d
Retry FindRangesForRepoSearch
2020-01-22 10:13:57 -08:00
beantaxi
9f9a1d4159
Rename authoriing.md to authoring.md
2020-01-22 12:04:49 -06:00
Yujun Zhang
e2f4339ec6
Add document about how kustomize build works
2020-01-22 13:32:49 +08:00
Sean Sullivan
1a7e2561ff
Fixed inventory Equal(), checking nil as passed parameter
2020-01-21 17:14:08 -08:00
Jeff Regan
c7d78970fb
Merge pull request #2134 from monopole/moveStatusToKustomize
...
Move status command to kustomize.
2020-01-21 17:13:06 -08:00
Jeffrey Regan
8e5bce17dc
Move status command to kustomize.
2020-01-21 17:09:52 -08:00
Kubernetes Prow Robot
39c7a06829
Merge pull request #2133 from seans3/inventory-set
...
Adds InventorySet Equals() function
2020-01-21 16:44:36 -08:00
Sean Sullivan
bf2e398b33
Adds InventorySet Equals() function
2020-01-21 16:15:42 -08:00
Kubernetes Prow Robot
758d428264
Merge pull request #2132 from seans3/inventory-set
...
Adds new helper function retrieveGroupingLabel()
2020-01-21 15:48:37 -08:00
Kubernetes Prow Robot
5353db36f0
Merge pull request #2127 from mortent/FixColorOutput
...
Fix printing to make sure always match setting colors with a reset
2020-01-21 15:18:35 -08:00
Sean Sullivan
3623d9205e
Adds new helper function retrieveGroupingLabel()
2020-01-21 15:18:22 -08:00
Morten Torkildsen
73d44f9d31
Fix printing to make sure always match setting colors with a reset
2020-01-21 14:57:10 -08:00
Kubernetes Prow Robot
b024157c2e
Merge pull request #2130 from phanimarupaka/MultipleServicesE2e
...
E2E Tests with multiple apps on same "kind" cluster
2020-01-21 14:04:34 -08:00
Kubernetes Prow Robot
5c55915c57
Merge pull request #2129 from phanimarupaka/FixTrimmingNewLines
...
Do not remove empty lines in configmap/secret
2020-01-21 10:11:39 -08:00
Haiyan Meng
1120c6bc7a
Add a User field into Document to make it easy to aggregate on github
...
user level.
2020-01-21 10:09:52 -08:00
Kubernetes Prow Robot
da23b9a8b4
Merge pull request #2128 from pwittrock/master
...
Release kyaml and cmd/config libs
2020-01-21 09:19:36 -08:00
Phani Teja Marupaka
e851e5eb94
E2E Tests with multiple apps
2020-01-20 23:02:50 -08:00
Phani Teja Marupaka
0bd872e6d5
Do not remove empty lines in configmap/secret
2020-01-20 11:42:39 -08:00
Haiyan Meng
96ee9e9146
Add curl ElasticSearch cmd for using filter and range together
2020-01-17 15:49:14 -08:00
Haiyan Meng
377eb5b66d
Fix the regexp for determining kustomization file
2020-01-17 15:48:38 -08:00
Haiyan Meng
f4636f8555
Add a fileType field into the index
2020-01-17 13:15:49 -08:00
Jeff Regan
89367be008
Merge pull request #2111 from phanimarupaka/FixStatusOfUnknownResources
...
Exclude invalid resources from status
2020-01-16 17:15:30 -08:00
Jeff Regan
736f826e7e
Merge pull request #2119 from phanimarupaka/HelloWorldExampleWithHere
...
Hello app e2e tests
2020-01-16 17:14:52 -08:00
Phillip Wittrock
331bab494d
Release kyaml and cmd/config libs
2020-01-16 16:25:16 -08:00
Kubernetes Prow Robot
39bbe6efe0
Merge pull request #2117 from seans3/inventory-set
...
Adds new InventorySet abstraction
kyaml/v0.0.9
2020-01-16 16:09:45 -08:00
Phani Teja Marupaka
13c891f54a
Install kind as part of e2e tests
2020-01-16 15:49:11 -08:00
Sean Sullivan
d93b5a161a
Adds new InventorySet abstraction
2020-01-16 14:36:44 -08:00
Phani Teja Marupaka
4d07004977
Hello app e2e tests
2020-01-16 14:11:18 -08:00
Kubernetes Prow Robot
e35eaaff17
Merge pull request #2116 from pwittrock/master
...
Refactor `config annotate`
2020-01-16 12:50:32 -08:00
Phillip Wittrock
c96cd82cab
Refactor config annotate
2020-01-16 11:49:44 -08:00
Jeff Regan
365583bc36
Merge pull request #2108 from fantashley/chartinflator-helm-repo
...
Support third-party Helm repos in ChartInflator
2020-01-16 11:41:03 -08:00