Skip to content

Instantly share code, notes, and snippets.

@dzabel
dzabel / openshift-cheatsheet.md
Created August 17, 2020 09:26 — forked from rafaeltuelho/openshift-cheatsheet.md
My Openshift Cheatsheet

My Openshift Cheatsheet

Openshift build secrets for cloning git repos using SSH Keys

  • To create ssh secret:
oc create secret generic sshsecret \
    --from-file=ssh-privatekey=$HOME/.ssh/id_rsa
@dzabel
dzabel / gist:1058630a6101520870b221e8e66eccf1
Created July 15, 2020 16:27 — forked from digitaljhelms/gist:4287848
Git/GitHub branching standards & conventions

Branching

Quick Legend

Description, Instructions, Notes
Instance Branch
@dzabel
dzabel / cache-redis.php
Created January 24, 2018 19:41 — forked from pfeiferbit/cache-redis.php
Configure TYPO3 6.2 to use Redis as LRU Cache. Put in typo3conf/conf.d/ and include via typo3conf/AdditionalConfiguration.php or merge array with LocalConfiguration.php.
<?php
/**
* @see: typo3_src/typo3/sysext/core/Configuration/DefaultConfiguration.php
*/
/**
* If phpredis extension exists, set cache backends to redis
*/
if (extension_loaded('redis')) {
@dzabel
dzabel / gist:d58007aa52c2c56b8db0
Last active August 29, 2015 14:24 — forked from ursbraem/gist:f6b573724c9dad9724a0
Typo3 User Options Setup
options {
// enable upload fields in Element Browser
uploadFieldsInTopOfEB = 1
createFoldersInEB =1
//Add save-and-new to all forms
saveDocNew = 1
// better Page tree
pageTree {
showNavTitle = 1
showPageIdWithTitle = 1