You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unzip the code source to a new directory on your local machine.
87
86
Change the directory and open repository:
88
87
89
88
```bash
90
89
cd code2cloud-python-flask-webserver
91
90
```
92
91
93
-
Open the `version.py` file and update the version number:
94
-
```python
95
-
version ="0.0.10"# Update to a new version number
96
-
```
97
-
98
-
Open the `manifests/deployment.yaml` file and update the container repository name and the version number:
99
-
```yaml
100
-
image: ghcr.io/<your-github-organization>/code2cloud-python-flask-webserver:v0.0.10 # Update the ontainer repository name with your github username and the version number
101
-
```
102
-
103
92
In your local repository, set the new remote URL to point to the repository you just created in your organization.
@@ -147,6 +136,33 @@ Use the external IP provided by the LoadBalancer service to access the applicati
147
136
148
137

149
138
139
+
140
+
141
+
### Implement changes on the application
142
+
143
+
Go to the directory and open repository:
144
+
145
+
```bash
146
+
cd code2cloud-python-flask-webserver
147
+
```
148
+
149
+
Implement the changes in the source code.
150
+
151
+
Open the `version.py` file and update the version number:
152
+
```python
153
+
version ="0.0.10"# Update to a new version number
154
+
```
155
+
156
+
Open the `manifests/deployment.yaml` file and update the container repository name and the version number:
157
+
```yaml
158
+
image: ghcr.io/<your-github-organization>/code2cloud-python-flask-webserver:v0.0.10 # Update the ontainer repository name with your github username and the version number
159
+
```
160
+
161
+
Apply the Kubernetes manifests to create the namespace, deployment, and service:
162
+
```bash
163
+
kubectl apply -f manifests/deployment.yaml
164
+
```
165
+
150
166
### Troubleshooting by verifying the HASH
151
167
152
168
Go to https://github.com/<your-github-organization>/code2cloud-python-flask-webserver/actions/
0 commit comments