Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion src/js/configs.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ module.exports = {
tls13: '5.50',
usesOpenssl: true,
},
tomcat: {
tomcat: {
highlighter: 'xml',
latestVersion: '9.0.30',
name: 'Tomcat',
Expand All @@ -194,6 +194,16 @@ tomcat: {
tls13: '8.0.0',
usesOpenssl: false,
},
kubelet: {
cipherFormat: 'go',
highlighter: 'yaml',
tls13: '1.14',
latestVersion: '1.29',
name: 'Kubernetes',
supportsHsts: false,
supportsOcspStapling: false,
usesOpenssl: false,
},
traefik: {
cipherFormat: 'go',
highlighter: 'ini',
Expand Down
8 changes: 8 additions & 0 deletions src/templates/partials/kubelet.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# {{output.header}}
# {{{output.link}}}
apiVersion: kubelet.config.k8s.io/v1beta1
kind: KubeletConfiguration
tlsCertFile: /path/to/ca.crt
tlsPrivateKeyFile: /path/to/privkey.pem
tlsCipherSuites: [{{{join output.ciphers ","}}}]
tlsMinVersion: {{output.protocols.[0]}}