- kind version 0.14.0
- kubernetes version 1.23.6
- kubectl version 1.23.6
- tekton version
- Client version 0.25.0
- Pipeline version 0.38.0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"database/sql" | |
"encoding/json" | |
"flag" | |
"fmt" | |
"log" | |
"net/http" | |
"os" |
- Create Upstream Object -
curl -X POST http://master-1:8001/upstreams --data name=users-upstream
- Assign target to Upstream Services
curl -X POST http://master-1:8001/upstreams/users-upstream/targets --data target='192.168.2.20:5001' curl -X POST http://master-1:8001/upstreams/users-upstream/targets --data target='192.168.2.20:5002'
- Create Services Object with upstream
curl -i -X POST http://master-1:8001/services/ --data 'name=users-services' --data host='users-upstream'
-
First, you should take a look at what packages are available
yum --showduplicates list nginx
-
Looking at that repo, it appears that nginx 1.6.3-1 is the version you want.
-
You can install the specific version by appending it to the package name with a dash:
yum install nginx-1.6.3-1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// http://lists.freeswitch.org/pipermail/freeswitch-users/2016-July/121412.html | |
// var myverto = new $.verto({yada: yada}); | |
// myverto.hangup(); // hangup all active calls | |
// myverto.purge(); // probably not necessary but doesn't hurt. Cleans out | |
// table internally. | |
// myverto.logout(); // Disconnect WebSocket | |
(function() { | |
var vertoHandle, vertoCallbacks, destinationNumber, currentCall, ext, passExt; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import urllib2 | |
import urllib | |
import re | |
import json | |
from base64 import b64decode, b64encode | |
from Crypto.Cipher import AES | |
from Crypto.Hash import MD5 | |
# We need 32 bytes for the AES key, and 16 bytes for the IV | |
def openssl_kdf(req, secret, salt): |