You've already forked sap-jenkins-library
mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-07-15 01:34:38 +02:00
fix(tls): default images replaced with images with public CA (#2894)
* default images replaced with images with public CA * go files regenerated * node buster image changed to lts-stretch in npmExecuteScripts, hadolint image rollbackw * go files regenerated * node buster image changed to lts-stretch in npmExecuteLint Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
fbcdd07ffc
commit
9b3162c74a
@ -295,7 +295,7 @@ func gitopsUpdateDeploymentMetadata() config.StepData {
|
|||||||
},
|
},
|
||||||
Containers: []config.Container{
|
Containers: []config.Container{
|
||||||
{Image: "dtzar/helm-kubectl:3.3.4", WorkingDir: "/config", Options: []config.Option{{Name: "-u", Value: "0"}}, Conditions: []config.Condition{{ConditionRef: "strings-equal", Params: []config.Param{{Name: "tool", Value: "helm"}}}}},
|
{Image: "dtzar/helm-kubectl:3.3.4", WorkingDir: "/config", Options: []config.Option{{Name: "-u", Value: "0"}}, Conditions: []config.Condition{{ConditionRef: "strings-equal", Params: []config.Param{{Name: "tool", Value: "helm"}}}}},
|
||||||
{Image: "dtzar/helm-kubectl:2.12.1", WorkingDir: "/config", Options: []config.Option{{Name: "-u", Value: "0"}}, Conditions: []config.Condition{{ConditionRef: "strings-equal", Params: []config.Param{{Name: "tool", Value: "kubectl"}}}}},
|
{Image: "dtzar/helm-kubectl:2.17.0", WorkingDir: "/config", Options: []config.Option{{Name: "-u", Value: "0"}}, Conditions: []config.Condition{{ConditionRef: "strings-equal", Params: []config.Param{{Name: "tool", Value: "kubectl"}}}}},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -449,8 +449,8 @@ func kubernetesDeployMetadata() config.StepData {
|
|||||||
},
|
},
|
||||||
Containers: []config.Container{
|
Containers: []config.Container{
|
||||||
{Image: "dtzar/helm-kubectl:3.4.1", WorkingDir: "/config", Options: []config.Option{{Name: "-u", Value: "0"}}, Conditions: []config.Condition{{ConditionRef: "strings-equal", Params: []config.Param{{Name: "deployTool", Value: "helm3"}}}}},
|
{Image: "dtzar/helm-kubectl:3.4.1", WorkingDir: "/config", Options: []config.Option{{Name: "-u", Value: "0"}}, Conditions: []config.Condition{{ConditionRef: "strings-equal", Params: []config.Param{{Name: "deployTool", Value: "helm3"}}}}},
|
||||||
{Image: "dtzar/helm-kubectl:2.12.1", WorkingDir: "/config", Options: []config.Option{{Name: "-u", Value: "0"}}, Conditions: []config.Condition{{ConditionRef: "strings-equal", Params: []config.Param{{Name: "deployTool", Value: "helm"}}}}},
|
{Image: "dtzar/helm-kubectl:2.17.0", WorkingDir: "/config", Options: []config.Option{{Name: "-u", Value: "0"}}, Conditions: []config.Condition{{ConditionRef: "strings-equal", Params: []config.Param{{Name: "deployTool", Value: "helm"}}}}},
|
||||||
{Image: "dtzar/helm-kubectl:2.12.1", WorkingDir: "/config", Options: []config.Option{{Name: "-u", Value: "0"}}, Conditions: []config.Condition{{ConditionRef: "strings-equal", Params: []config.Param{{Name: "deployTool", Value: "kubectl"}}}}},
|
{Image: "dtzar/helm-kubectl:2.17.0", WorkingDir: "/config", Options: []config.Option{{Name: "-u", Value: "0"}}, Conditions: []config.Condition{{ConditionRef: "strings-equal", Params: []config.Param{{Name: "deployTool", Value: "kubectl"}}}}},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -130,7 +130,7 @@ func npmExecuteLintMetadata() config.StepData {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
Containers: []config.Container{
|
Containers: []config.Container{
|
||||||
{Name: "node", Image: "node:12-buster"},
|
{Name: "node", Image: "node:lts-stretch"},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -198,7 +198,7 @@ func npmExecuteScriptsMetadata() config.StepData {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
Containers: []config.Container{
|
Containers: []config.Container{
|
||||||
{Name: "node", Image: "node:12-buster"},
|
{Name: "node", Image: "node:lts-stretch"},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -169,7 +169,7 @@ spec:
|
|||||||
params:
|
params:
|
||||||
- name: tool
|
- name: tool
|
||||||
value: helm
|
value: helm
|
||||||
- image: dtzar/helm-kubectl:2.12.1
|
- image: dtzar/helm-kubectl:2.17.0
|
||||||
workingDir: /config
|
workingDir: /config
|
||||||
options:
|
options:
|
||||||
- name: -u
|
- name: -u
|
||||||
|
@ -315,7 +315,7 @@ spec:
|
|||||||
params:
|
params:
|
||||||
- name: deployTool
|
- name: deployTool
|
||||||
value: helm3
|
value: helm3
|
||||||
- image: dtzar/helm-kubectl:2.12.1
|
- image: dtzar/helm-kubectl:2.17.0
|
||||||
workingDir: /config
|
workingDir: /config
|
||||||
options:
|
options:
|
||||||
- name: -u
|
- name: -u
|
||||||
@ -325,7 +325,7 @@ spec:
|
|||||||
params:
|
params:
|
||||||
- name: deployTool
|
- name: deployTool
|
||||||
value: helm
|
value: helm
|
||||||
- image: dtzar/helm-kubectl:2.12.1
|
- image: dtzar/helm-kubectl:2.17.0
|
||||||
workingDir: /config
|
workingDir: /config
|
||||||
options:
|
options:
|
||||||
- name: -u
|
- name: -u
|
||||||
|
@ -31,4 +31,4 @@ spec:
|
|||||||
- name: npm/defaultNpmRegistry
|
- name: npm/defaultNpmRegistry
|
||||||
containers:
|
containers:
|
||||||
- name: node
|
- name: node
|
||||||
image: node:12-buster
|
image: node:lts-stretch
|
||||||
|
@ -76,4 +76,4 @@ spec:
|
|||||||
default: false
|
default: false
|
||||||
containers:
|
containers:
|
||||||
- name: node
|
- name: node
|
||||||
image: node:12-buster
|
image: node:lts-stretch
|
||||||
|
Reference in New Issue
Block a user