Skip to content

Commit fddff10

Browse files
authored
fix(ksonnet-util): don't dictate upstream library (#258)
In 91bbd26, kausal was fixed to `ksonnet-lib/ksonnet.beta.4`, which is problematic because: - it prevents use of other API compatible libraries, notably `jsonnet-libs/k8s` and `kube-jsonnet/k` - it forces users to use outdated, unmaintained, archived software - it bypasses a Tanka measure for this exact case, namely the "alias import" `k.libsonnet`, which has been explicitely set up for importing the Kubernetes library in the correct version for the users cluster. Given that, I think we should revert most of these changes, keeping the actual fix of that PR (a function signature backport). I don't think this will have any impact on our internal config repo, as it already uses `ksonnet.beta.4` through the alias import, so this *should* be a no-op.
1 parent d851699 commit fddff10

File tree

2 files changed

+1
-16
lines changed

2 files changed

+1
-16
lines changed

ksonnet-util/jsonnetfile.json

Lines changed: 0 additions & 15 deletions
This file was deleted.

ksonnet-util/kausal.libsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Override defaults paramters for objects in the ksonnet libs here.
2-
local k = import 'ksonnet.beta.4/k.libsonnet';
2+
local k = import 'k.libsonnet';
33

44
k {
55
_config+:: {

0 commit comments

Comments
 (0)