Skip to content

Commit

Permalink
Fix setting nodeSelector on OKE
Browse files Browse the repository at this point in the history
  • Loading branch information
DebakelOrakel committed Jun 25, 2024
1 parent 5774114 commit 16e30ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion component/main.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ local kube = import 'lib/kube.libjsonnet';
local inv = kap.inventory();

local params = inv.parameters.cloudscale_cloud_controller_manager;
local isOpenShift = inv.parameters.facts.distribution == 'openshift4';
local isOpenShift = std.member([ 'openshift4', 'oke' ], inv.parameters.facts.distribution);

local manifests = std.parseJson(
kap.yaml_load_stream(
Expand Down

0 comments on commit 16e30ae

Please sign in to comment.