Skip to content

Commit a046380

Browse files
authored
Merge pull request kubernetes#3075 from porridge/patch-1
KEP-2876: Merge starlark sections
2 parents 4ed7ea7 + aff752d commit a046380

File tree

1 file changed

+6
-9
lines changed
  • keps/sig-api-machinery/2876-crd-validation-expression-language

1 file changed

+6
-9
lines changed

keps/sig-api-machinery/2876-crd-validation-expression-language/README.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,9 @@
5858
- [Rego](#rego)
5959
- [Expr](#expr)
6060
- [WebAssembly](#webassembly)
61-
- [Starlark (formeraly known as Skylark)](#starlark-formeraly-known-as-skylark)
61+
- [Starlark (formerly known as Skylark)](#starlark-formerly-known-as-skylark)
6262
- [Build our own](#build-our-own)
6363
- [Make it easier to validate CRDs using webhooks](#make-it-easier-to-validate-crds-using-webhooks)
64-
- [Starlark](#starlark)
6564
- [Infrastructure Needed (Optional)](#infrastructure-needed-optional)
6665
<!-- /toc -->
6766

@@ -1319,7 +1318,11 @@ The biggest problems with WebAssembly are:
13191318

13201319
See also github.com/chimera-kube/chimera-admission
13211320

1322-
### Starlark (formeraly known as Skylark)
1321+
### Starlark (formerly known as Skylark)
1322+
1323+
See https://github.com/google/starlark-go/.
1324+
Starlark is an untyped dynamic language with high-level data types, first-class functions with lexical scope, and automatic memory management or garbage collection.
1325+
It is mostly used in build system and has been added as a dependency in k/k.
13231326

13241327
Python dialect designed for scripts embedded in the Bazel build system. It is designed to allow for
13251328
determinstic and hermetic execution. Implementations exist in Go, Java and Rust. It is used
@@ -1353,12 +1356,6 @@ is a time consuming way to solve what should be a simple problem.
13531356
For cluster operators, regardless of what extensions they install in their cluster,
13541357
it is to their advantage to install the fewest webhooks possible since.
13551358

1356-
### Starlark
1357-
1358-
See https://github.com/google/starlark-go/.
1359-
Starlark is an untyped dynamic language with high-level data types, first-class functions with lexical scope, and automatic memory management or garbage collection.
1360-
It is mostly used in build system and has been added as a dependency in k/k.
1361-
13621359
## Infrastructure Needed (Optional)
13631360

13641361
<!--

0 commit comments

Comments
 (0)