Skip to content

Instantly share code, notes, and snippets.

@FauxFaux
Created June 24, 2020 20:01
Show Gist options
  • Save FauxFaux/912acca003300e2e14ff61c52ec1efec to your computer and use it in GitHub Desktop.
Save FauxFaux/912acca003300e2e14ff61c52ec1efec to your computer and use it in GitHub Desktop.
export function mongo(name: string): KRoot[] {
return [
deploymentOf(name, {
name,
image: 'mongo:4-bionic',
ports: [{ containerPort: 27017 }],
readinessProbe: {
exec: { command: ['mongo', '--eval', '{ ping: 1 }'] },
},
}),
onePortService(name, 27017),
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment