Skip to content

Instantly share code, notes, and snippets.

@dev-korr
dev-korr / rundeck-acl-config-map.yaml
Created January 31, 2021 08:36
configmap with acl policies for rundeck hosted on kubernetes.
apiVersion: v1
kind: ConfigMap
metadata:
name: acl-configmap
namespace: rundeck
labels:
app: rundeck
data:
custom.aclpolicy: |
description: Admin, all access for admin/SRE team - project context.
@dev-korr
dev-korr / rundeck-template-override-values.yaml
Last active February 1, 2021 08:19
Example values.yaml for production ready rundeck deployment.
# This Gist Is Created To Support The Blog Post Below.
# https://medium.com/p/b29366f85d50
# Refer to post above for more informaton
image:
repository: tagore22/rundeck
tag: 3.3.4
pullPolicy: Always
deployment:
replicaCount: 1
annotations: {}
@dev-korr
dev-korr / Rundeck-Dockerfile
Last active January 31, 2021 08:07
Docker file for rundeck.
ARG RUNDECK_IMAGE
FROM ${RUNDECK_IMAGE:-rundeck/rundeck:3.3.4}
LABEL maintainer="dev.korr2010@gmail.com"
USER root
#Installing minimal useful tools that we would need such as aws, vault and consul CLI's.
RUN apt-get update && apt-get install -y \
apt-transport-https \