Skip to content

Commit 0189a59

Browse files
committed
chore(redis): change deis to drycc
1 parent ab638d6 commit 0189a59

9 files changed

Lines changed: 29 additions & 29 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
# - Docker image name
44
# - Kubernetes service, rc, pod, secret, volume names
55
SHORT_NAME := redis
6-
DEIS_REGISTY ?= ${DEV_REGISTRY}/
7-
IMAGE_PREFIX ?= deis
6+
DRYCC_REGISTY ?= ${DEV_REGISTRY}
7+
IMAGE_PREFIX ?= drycc
88

99
include versioning.mk
1010

1111
SHELL_SCRIPTS = $(wildcard _scripts/*.sh) rootfs/bin/boot
1212

1313
# The following variables describe the containerized development environment
1414
# and other build options
15-
DEV_ENV_IMAGE := quay.io/deis/go-dev:0.20.0
15+
DEV_ENV_IMAGE := quay.io/drycc/go-dev:v0.22.0
1616
DEV_ENV_WORK_DIR := /go/src/${REPO_PATH}
1717
DEV_ENV_CMD := docker run --rm -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR} ${DEV_ENV_IMAGE}
1818
DEV_ENV_CMD_INT := docker run -it --rm -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR} ${DEV_ENV_IMAGE}

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11

2-
# Deis Redis
3-
[![Build Status](https://ci.deis.io/job/redis/badge/icon)](https://ci.deis.io/job/redis)
2+
# Drycc Redis
3+
[![Build Status](https://ci.drycc.cc/job/redis/badge/icon)](https://ci.drycc.cc/job/redis)
44

5-
Deis (pronounced DAY-iss) Workflow is an open source Platform as a Service (PaaS) that adds a developer-friendly layer to any [Kubernetes](http://kubernetes.io) cluster, making it easy to deploy and manage applications on your own servers.
5+
Drycc (pronounced DAY-iss) Workflow is an open source Platform as a Service (PaaS) that adds a developer-friendly layer to any [Kubernetes](http://kubernetes.io) cluster, making it easy to deploy and manage applications on your own servers.
66

7-
![Deis Graphic](https://getdeis.blob.core.windows.net/get-deis/deis-graphic-small.png)
7+
![Drycc Graphic](https://getdrycc.blob.core.windows.net/get-drycc/drycc-graphic-small.png)
88

99
## Description
1010
A Docker image for running standalone (not clustered) Redis on a Kubernetes cluster.
1111

12-
[v2.18]: https://github.com/deisthree/workflow/releases/tag/v2.18.0
12+
[v2.18]: https://github.com/drycc/workflow/releases/tag/v2.18.0

charts/redis/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: redis
2-
home: https://github.com/deisthree/redis
2+
home: https://github.com/drycc/redis
33
version: <Will be populated by the ci before publishing the chart>
44
description: A Redis database for use inside a Kubernetes cluster.
55
maintainers:
6-
- name: Deis Team
7-
email: engineering@deis.com
6+
- name: Drycc Team
7+
email: engineering@drycc.com

charts/redis/templates/logger-redis-deployment.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@
22
apiVersion: extensions/v1beta1
33
kind: Deployment
44
metadata:
5-
name: deis-logger-redis
5+
name: drycc-logger-redis
66
labels:
7-
heritage: deis
7+
heritage: drycc
88
annotations:
9-
component.deis.io/version: {{ .Values.docker_tag }}
9+
component.drycc.cc/version: {{ .Values.docker_tag }}
1010
spec:
1111
replicas: 1
1212
strategy:
1313
type: Recreate
1414
selector:
1515
matchLabels:
16-
app: deis-logger-redis
16+
app: drycc-logger-redis
1717
template:
1818
metadata:
1919
labels:
20-
app: deis-logger-redis
20+
app: drycc-logger-redis
2121
spec:
2222
containers:
23-
- name: deis-logger-redis
23+
- name: drycc-logger-redis
2424
image: quay.io/{{ .Values.org }}/redis:{{ .Values.docker_tag }}
2525
imagePullPolicy: {{ .Values.pull_policy }}
2626
{{- if or (.Values.limits_cpu) (.Values.limits_memory)}}
@@ -37,7 +37,7 @@ spec:
3737
- containerPort: 6379
3838
volumeMounts:
3939
- name: logger-redis-creds
40-
mountPath: /var/run/secrets/deis/redis/creds
40+
mountPath: /var/run/secrets/drycc/redis/creds
4141
volumes:
4242
- name: logger-redis-creds
4343
secret:

charts/redis/templates/logger-redis-secret-creds.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ kind: Secret
33
metadata:
44
name: logger-redis-creds
55
labels:
6-
app: deis-logger-redis
7-
heritage: deis
6+
app: drycc-logger-redis
7+
heritage: drycc
88
annotations:
99
"helm.sh/hook": pre-install
1010
data: {{ if eq .Values.global.logger_redis_location "on-cluster"}}

charts/redis/templates/logger-redis-service.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
apiVersion: v1
33
kind: Service
44
metadata:
5-
name: deis-logger-redis
5+
name: drycc-logger-redis
66
labels:
77
heritage: helm
88
spec:
99
selector:
10-
app: deis-logger-redis
10+
app: drycc-logger-redis
1111
ports:
1212
- port: 6379
1313
{{- end }}

charts/redis/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
org: "deisci"
1+
org: "drycc"
22
pull_policy: "Always"
33
docker_tag: canary
44
# limits_cpu: "100m"

rootfs/bin/boot

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ set -eof pipefail
55
REDIS_CONFIG_FILE=/etc/redis/redis.conf
66

77
# Set password
8-
REDIS_PASSWORD_FILE=/var/run/secrets/deis/redis/creds/password
8+
REDIS_PASSWORD_FILE=/var/run/secrets/drycc/redis/creds/password
99
if [ -e $REDIS_PASSWORD_FILE ]; then
10-
REDIS_PASSWORD="$(cat /var/run/secrets/deis/redis/creds/password)"
10+
REDIS_PASSWORD="$(cat /var/run/secrets/drycc/redis/creds/password)"
1111
if [ ! -z "$REDIS_PASSWORD" ]; then
12-
echo "requirepass $REDIS_PASSWOR" >> REDIS_CONFIG_FILE
12+
echo "requirepass $REDIS_PASSWORD" >> REDIS_CONFIG_FILE
1313
fi
1414
fi
1515

versioning.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
MUTABLE_VERSION ?= canary
22
VERSION ?= git-$(shell git rev-parse --short HEAD)
33

4-
IMAGE := ${DEIS_REGISTRY}${IMAGE_PREFIX}/${SHORT_NAME}:${VERSION}
5-
MUTABLE_IMAGE := ${DEIS_REGISTRY}${IMAGE_PREFIX}/${SHORT_NAME}:${MUTABLE_VERSION}
4+
IMAGE := ${DRYCC_REGISTRY}${IMAGE_PREFIX}/${SHORT_NAME}:${VERSION}
5+
MUTABLE_IMAGE := ${DRYCC_REGISTRY}${IMAGE_PREFIX}/${SHORT_NAME}:${MUTABLE_VERSION}
66

77
info:
88
@echo "Build tag: ${VERSION}"
9-
@echo "Registry: ${DEIS_REGISTRY}"
9+
@echo "Registry: ${DRYCC_REGISTRY}"
1010
@echo "Immutable tag: ${IMAGE}"
1111
@echo "Mutable tag: ${MUTABLE_IMAGE}"
1212

0 commit comments

Comments
 (0)