Skip to content

Commit e0212b5

Browse files
authored
Merge pull request #291 from TykTechnologies/streaming-release
Streaming release
2 parents 4612c93 + 0114567 commit e0212b5

File tree

94 files changed

+3228
-735
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+3228
-735
lines changed

.github/workflows/tyk-demo-tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,19 @@ jobs:
1212
GitHub!"
1313
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository
1414
is ${{ github.repository }}."
15+
- name: Install websocat (binary method)
16+
run: |
17+
wget https://github.com/vi/websocat/releases/download/v1.14.0/websocat.x86_64-unknown-linux-musl
18+
chmod +x websocat.x86_64-unknown-linux-musl
19+
sudo mv websocat.x86_64-unknown-linux-musl /usr/local/bin/websocat
1520
- name: Check Out Repository Code
1621
uses: actions/checkout@v4
1722
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the
1823
runner."
1924
- name: Extract Docker Image Tag
2025
id: get-gateway-tag
2126
run: |
22-
GATEWAY_TAG=$(grep -m 1 'tykio/tyk-gateway:' deployments/tyk/docker-compose.yml | awk -F':' '{print $NF}' | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//' -e 's/\${GATEWAY_VERSION:-\(.*\)}/\1/' -e 's/^-//' -e 's/}$//')
27+
GATEWAY_TAG=$(grep -m 1 'tykio/tyk-gateway-ee:' deployments/tyk/docker-compose.yml | awk -F':' '{print $NF}' | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//' -e 's/\${GATEWAY_VERSION:-\(.*\)}/\1/' -e 's/^-//' -e 's/}$//')
2328
echo "gateway-tag=$GATEWAY_TAG" >> $GITHUB_OUTPUT
2429
echo "Extracted gateway tag: $GATEWAY_TAG"
2530
- name: Cache Go Plugins

deployments/analytics-datadog/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ services:
1616
- .env
1717

1818
tyk-pump-datadog:
19-
image: tykio/tyk-pump-docker-pub:${PUMP_VERSION:-v1.11.0}
19+
image: tykio/tyk-pump-docker-pub:${PUMP_VERSION:-v1.11.1}
2020
networks:
2121
- tyk
2222
volumes:

deployments/analytics-kibana/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ services:
1717
volumes:
1818
- elasticsearch-data:/usr/share/elasticsearch/data
1919
tyk-pump-elasticsearch:
20-
image: tykio/tyk-pump-docker-pub:${PUMP_VERSION:-v1.11.0}
20+
image: tykio/tyk-pump-docker-pub:${PUMP_VERSION:-v1.11.1}
2121
networks:
2222
- tyk
2323
volumes:

deployments/analytics-splunk/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ services:
1616
- splunk-data:/opt/splunk/var
1717
- splunk-data:/opt/splunk/etc
1818
tyk-splunk-pump:
19-
image: tykio/tyk-pump-docker-pub:${PUMP_VERSION:-v1.11.0}
19+
image: tykio/tyk-pump-docker-pub:${PUMP_VERSION:-v1.11.1}
2020
networks:
2121
- tyk
2222
volumes:

deployments/cicd/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ RUN apt-get update && \
66
curl -O https://packagecloud.io/install/repositories/tyk/tyk-sync/script.deb.sh && \
77
chmod +x script.deb.sh && \
88
./script.deb.sh && \
9-
apt-get install -y tyk-sync=1.5.1
9+
apt-get install -y tyk-sync=2.0.1
1010

1111
USER jenkins

deployments/cicd/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
services:
33
jenkins:
44
build: ./deployments/cicd
5-
image: tyk-demo-jenkins-tyk-sync:v1.5.1
5+
image: tyk-demo-jenkins-tyk-sync:v2.0.1
66
ports:
77
- 8070:8080
88
networks:

deployments/cicd/scripts/dump-tyk.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ gitea_tyk_data_repo_path=$(cat .context-data/gitea-tyk-data-repo-path)
77
docker run --rm \
88
--network tyk-demo_tyk \
99
-v $gitea_tyk_data_repo_path:/opt/tyk-sync/data \
10-
tykio/tyk-sync:v1.5.1 \
10+
tykio/tyk-sync:v2.0.1 \
1111
dump -d http://tyk-dashboard:3000 -s $dashboard_user_api_credentials -t data

0 commit comments

Comments
 (0)