Skip to content

Commit

Permalink
Merge pull request #70 from projectsyn/support-oke
Browse files Browse the repository at this point in the history
Treat OKE as OpenShift
  • Loading branch information
simu authored Apr 30, 2024
2 parents e5837a0 + 0e06de5 commit e2b68a2
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 @@ -5,7 +5,7 @@ local sc = import 'lib/storageclass.libsonnet';
local inv = kap.inventory();
local params = inv.parameters.csi_cloudscale;

local isOpenshift = std.startsWith(inv.parameters.facts.distribution, 'openshift');
local isOpenshift = std.member([ 'openshift4', 'oke' ], inv.parameters.facts.distribution);

local config = {
allowVolumeExpansion: true,
Expand Down

0 comments on commit e2b68a2

Please sign in to comment.