Skip to content

Commit c6f0b61

Browse files
Merge pull request #56 from ptxmac/fix-readme
[docs] Fix broken links in README.md
2 parents f9f7dea + 3b74a2d commit c6f0b61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ copy the WORKSPACE snippet into your `WORKSPACE` file.
4646
The `k8s_deploy` creates rules that produce the `.apply` and `.gitops` targets `k8s_deploy` is defined in [k8s.bzl](./skylib/k8s.bzl). `k8s_deploy` takes the files listed in the `manifests`, `patches`, and `configmaps_srcs` attributes and combines (**renders**) them into one YAML file. This happens when you `bazel build` or `bazel run` a target created by the `k8s_deploy`. The file is created at `bazel-bin/path/to/package/name.yaml`. When you run a `.apply` target, it runs `kubectl apply` on this file. When you run a `.gitops` target, it copies this file to
4747
the appropriate location in the same os separate repository.
4848

49-
For example, let's look at the [example's k8s_deploy](./e2e/helloworld/BUILD). We can peek at the file containing the rendered K8s manifests:
49+
For example, let's look at the [example's k8s_deploy](./e2e/helloworld/BUILD.bazel). We can peek at the file containing the rendered K8s manifests:
5050
```bash
5151
cd e2e
5252
bazel run //helloworld:mynamespace.show
@@ -342,7 +342,7 @@ k8s_deploy(
342342
Many instances of `k8s_deploy` include an `objects` attribute that references other instances of
343343
`k8s_deploy`. When chained this way, running the `.apply` will also apply any dependencies as well.
344344

345-
For example, to add dependency to the example [helloworld deployment](./examples/helloworld/BUILD):
345+
For example, to add dependency to the example [helloworld deployment](./e2e/helloworld/BUILD.bazel):
346346
```starlark
347347
k8s_deploy(
348348
name = "mynamespace",

0 commit comments

Comments
 (0)