Skip to content

Commit

Permalink
Also remove security context from default
Browse files Browse the repository at this point in the history
  • Loading branch information
Kidswiss authored and TheBigLee committed Nov 28, 2023
1 parent 3385b05 commit f0dfd92
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions component/component/functions.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,34 @@ local appcatRuntimeConfig = {
},
};

local defaultRuntimeConfig = {
apiVersion: 'pkg.crossplane.io/v1beta1',
kind: 'DeploymentRuntimeConfig',
metadata: {
name: 'default',
},
spec: {
deploymentTemplate: {
spec: {
selector: {},
template: {
spec:
{
containers: [
{
name: 'package-runtime',
securityContext: {},
},
],
securityContext: {},
},
},
},
},
},
};


local appcatImageTag = std.strReplace(appcatImage.tag, '/', '_');

local appcatFunctionImage = appcatImage.registry + '/' + appcatImage.repository + ':' + appcatImageTag;
Expand Down

0 comments on commit f0dfd92

Please sign in to comment.